diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2023-02-28 19:46:24 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2023-02-28 19:46:24 +0800 |
commit | 1f339c5add9872b7e5d87d121550e4096c28c146 (patch) | |
tree | 7fca5eec7d19a634d8ba854c7e124f0f3d2edef7 | |
parent | 8d7f468d2612387e0ec91ae4de8d77a905e84104 (diff) | |
download | AUR4-PKGBUILD-1f339c5add9872b7e5d87d121550e4096c28c146.tar.gz AUR4-PKGBUILD-1f339c5add9872b7e5d87d121550e4096c28c146.tar.zst AUR4-PKGBUILD-1f339c5add9872b7e5d87d121550e4096c28c146.zip |
guile-lzma: 0.1.1 (initial commit)
-rw-r--r-- | guile-lzma/.SRCINFO | 16 | ||||
-rw-r--r-- | guile-lzma/PKGBUILD | 28 |
2 files changed, 44 insertions, 0 deletions
diff --git a/guile-lzma/.SRCINFO b/guile-lzma/.SRCINFO new file mode 100644 index 0000000..fb5e2c3 --- /dev/null +++ b/guile-lzma/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = guile-lzma + pkgdesc = Guile bindings for liblzma + pkgver = 0.1.1 + pkgrel = 1 + url = https://ngyro.com/software/guile-lzma.html + arch = x86_64 + arch = i686 + arch = armv7h + license = GPL3 + depends = guile + depends = guile-bytestructures + depends = xz + source = https://files.ngyro.com/guile-lzma/guile-lzma-0.1.1.tar.gz + sha256sums = 2b866896d672ed4d39008f4b5336750d7897560a06678365f5c5a72bd2fcce5e + +pkgname = guile-lzma diff --git a/guile-lzma/PKGBUILD b/guile-lzma/PKGBUILD new file mode 100644 index 0000000..17fc9e9 --- /dev/null +++ b/guile-lzma/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: lantw44 (at) gmail (dot) com + +pkgname=guile-lzma +pkgver=0.1.1 +pkgrel=1 +pkgdesc='Guile bindings for liblzma' +arch=('x86_64' 'i686' 'armv7h') +url='https://ngyro.com/software/guile-lzma.html' +license=('GPL3') +depends=('guile' 'guile-bytestructures' 'xz') +source=("https://files.ngyro.com/${pkgname}/${pkgname}-${pkgver}.tar.gz") +sha256sums=('2b866896d672ed4d39008f4b5336750d7897560a06678365f5c5a72bd2fcce5e') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + make check +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |