diff options
| author | Fuwn <[email protected]> | 2023-05-30 00:30:22 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-05-30 00:30:22 -0700 |
| commit | 71e34716fa82d7e5c9b09d606e7ff6c359d128db (patch) | |
| tree | 6438f52b7c7aec2e52a6db52de304ca205321a1a | |
| parent | build(pkgbuild): add maintainer (diff) | |
| download | nectar-71e34716fa82d7e5c9b09d606e7ff6c359d128db.tar.xz nectar-71e34716fa82d7e5c9b09d606e7ff6c359d128db.zip | |
fix(pkgbuild): move pkgbuild to aur
| -rw-r--r-- | archlinux/PKGBUILD | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD deleted file mode 100644 index a4c422b..0000000 --- a/archlinux/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: Fuwn <[email protected]> - -pkgname='nectar' -pkgver=0.1.0 -pkgrel=1 -pkgdesc='Command-line Honeyfeed Reader' -arch=('any') -url='https://github.com/Fuwn/nectar' -license=('GPL-3.0-only') -depends=('gum' 'curl' 'pup' 'pandoc' 'glow') -makedepends=('ruby' 'rubygems' 'git') -source=('git+https://github.com/Fuwn/nectar.git#branch=main') -sha256sums=('SKIP') - -prepare() { - gem install --user-install bashly -} - -pkgver() { - cd "${srcdir}/${pkgname}" - - echo "$(git rev-list --count HEAD).$(git rev-parse --short HEAD)" -} - -build() { - cd "${srcdir}/${pkgname}" - - bashly generate -} - -package() { - cd "${srcdir}/${pkgname}" - - mkdir -p "${pkgdir}/usr/bin" - - install -m755 nectar "${pkgdir}/usr/bin/${pkgname}" -} |