-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
27 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
pkgname=grub-btrfs | ||
pkgver=4.13 | ||
pkgdesc='Include btrfs snapshots in GRUB boot options' | ||
arch=('any') | ||
url="https://github.com/Antynea/${pkgname}" | ||
url='https://github.com/Antynea/grub-btrfs' | ||
license=('GPL-3.0-only') | ||
depends=('btrfs-progs' 'grub2-common') | ||
optdepends=( | ||
'snapper: For snapper support' | ||
'inotify-tools: For grub-btrfsd daemon' | ||
'snapper: For snapper support' | ||
'inotify-tools: For grub-btrfsd daemon' | ||
) | ||
backup=('etc/default/grub-btrfs/config') | ||
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz") | ||
b2sums=('e2f11a0a8282e3ec8ff8223e3bad70b5d5c5e81b4d740a1bf3554db412dbe48a8a0f216f4e6c65ae1d11c01a27b8b92bae9b470c60d2389505ce089511536e1a') | ||
maintainer=("Eric Renfro <[email protected]") | ||
|
||
package() { | ||
cd "${pkgname}-${pkgver}" | ||
make DESTDIR="${pkgdir}" GRUB_UPDATE_EXCLUDE=true install | ||
cd "${pkgname}-${pkgver}" | ||
make DESTDIR="${pkgdir}" GRUB_UPDATE_EXCLUDE=true install | ||
} | ||
|
||
# vim:set ts=2 sw=2 et: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,14 +5,13 @@ pkgdesc = Fast, secure, efficient backup program | |
url = https://github.com/restic/restic | ||
arch = amd64 | ||
arch = arm64 | ||
arch = arm | ||
arch = armhf | ||
arch = i386 | ||
arch = mips64el | ||
arch = ppc64el | ||
arch = riscv64 | ||
arch = s390x | ||
conflicts = restic | ||
replaces = restic | ||
optdepends = fuse: mount archive support | ||
maintainer = Eric Renfro <[email protected]> | ||
source_amd64 = https://github.com/restic/restic/releases/download/v0.16.4/restic_0.16.4_linux_amd64.bz2 | ||
source_arm64 = https://github.com/restic/restic/releases/download/v0.16.4/restic_0.16.4_linux_arm64.bz2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,12 +20,10 @@ source_riscv64=("https://github.com/restic/restic/releases/download/v${pkgver}/r | |
source_s390x=("https://github.com/restic/restic/releases/download/v${pkgver}/restic_${pkgver}_linux_s390x.bz2") | ||
optdepends=('fuse: mount archive support') | ||
pkgdesc="Fast, secure, efficient backup program" | ||
url="https://github.com/restic/restic" | ||
url='https://github.com/restic/restic' | ||
maintainer=("Eric Renfro <[email protected]>") | ||
|
||
package() { | ||
cd "${_archive}" | ||
# Install binary | ||
install -Dm755 "${gives}_${pkgver}_linux_${CARCH}" "${pkgdir}/usr/bin/${gives}" | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,12 +20,11 @@ source_ppc64el=("https://github.com/creativeprojects/resticprofile/releases/down | |
source_riscv64=("https://github.com/creativeprojects/resticprofile/releases/download/v${pkgver}/resticprofile_${pkgver}_linux_riscv64.tar.gz") | ||
source_s390x=("https://github.com/creativeprojects/resticprofile/releases/download/v${pkgver}/resticprofile_${pkgver}_linux_s390x.tar.gz") | ||
pkgdesc="Configuration profiles manager for restic backup" | ||
url="https://github.com/creativeprojects/resticprofile" | ||
url='https://github.com/creativeprojects/resticprofile' | ||
maintainer=("Eric Renfro <[email protected]>") | ||
|
||
package() { | ||
cd "${_archive}" | ||
# Install binary | ||
cd "${srcdir}" | ||
install -Dm755 "${gives}" "${pkgdir}/usr/bin/${gives}" | ||
install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${gives}" | ||
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${gives}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
pkgname=snapper-rollback-git | ||
gives=snapper-rollback | ||
pkgver=1.0 | ||
pkgdesc='Script to rollback snapper snapshots as described here https://wiki.archlinux.org/index.php/Snapper#Suggested_filesystem_layout' | ||
arch=('any') | ||
pkgdesc='Rollback snapper snapshots | ||
https://wiki.archlinux.org/index.php/Snapper#Suggested_filesystem_layout' | ||
license=('GPL-3.0-only') | ||
url='https://github.com/jrabinow/snapper-rollback' | ||
depends=('coreutils' 'python3' 'btrfs-progs' 'python3-btrfsutil') | ||
|
@@ -15,7 +15,7 @@ sha256sums=('SKIP') | |
maintainer=("Eric Renfro <[email protected]>") | ||
|
||
package() { | ||
cd "${_archive}" | ||
cd "${gives}" | ||
install -Dm644 "snapper-rollback.conf" -t "${pkgdir}/etc/" | ||
install -Dm755 "snapper-rollback.py" "${pkgdir}/usr/sbin/snapper-rollback" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
pkgname = typora-deb | ||
gives = typora | ||
pkgver = 1.9.3 | ||
pkgdesc = A minimal markdown editor and reader. | ||
pkgver = 1.9.3-1 | ||
pkgdesc = A minimal markdown editor and reader | ||
url = https://typora.io | ||
arch = amd64 | ||
source = https://download.typora.io/linux/typora_1.9.3_amd64.deb | ||
depends = libgtk-3-0 | ||
depends = libnss3 | ||
optdepends = noto-fonts-enoji: Or some other emoji fonts to see/use emojis | ||
optdepends = noto-fonts-emoji: Or some other emoji fonts to see/use emojis | ||
optdepends = pandoc: Import/export for extra file formats | ||
replaces = typora | ||
license = custom:"Copyright (c) 2015 Abner Lee All Rights Reserved." | ||
maintainer = Eric Renfro <[email protected]> | ||
repology = project: typora | ||
sha256sums = deb47f0af1458d13e4cf6ee69b55ade61c204549cb2fb9692c5280da6a082f1f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
pkgname="typora-deb" | ||
gives="typora" | ||
pkgver="1.9.3" | ||
pkgver="1.9.3-1" | ||
url='https://typora.io' | ||
repology=("project: typora") | ||
depends=("libgtk-3-0" "libnss3") | ||
arch=('amd64') | ||
license=('custom:"Copyright (c) 2015 Abner Lee All Rights Reserved."') | ||
sha256sums=("deb47f0af1458d13e4cf6ee69b55ade61c204549cb2fb9692c5280da6a082f1f") | ||
source=("https://download.typora.io/linux/${gives}_${pkgver}_amd64.deb") | ||
source=("https://download.typora.io/linux/${gives}_${pkgver%-*}_amd64.deb") | ||
optdepends=( | ||
"noto-fonts-enoji: Or some other emoji fonts to see/use emojis" | ||
"noto-fonts-emoji: Or some other emoji fonts to see/use emojis" | ||
"pandoc: Import/export for extra file formats" | ||
) | ||
replaces=("typora") | ||
pkgdesc="A minimal markdown editor and reader." | ||
pkgdesc="A minimal markdown editor and reader" | ||
maintainer=("Eric Renfro <[email protected]>") | ||
|
||
# vim:set ft=sh ts=2 sw=2 et: |