diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2018-07-15 17:06:37 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2018-07-15 17:06:37 +0800 |
commit | dfb5d53df9a733c2a2ff1b97880e7e3c76f4f5f6 (patch) | |
tree | fc1179ad20c6249071b5ad5c62b380e7db83ecb2 | |
parent | eccb60200dd925e4840a1a07891e8fdb0af2e990 (diff) | |
download | AUR4-PKGBUILD-dfb5d53df9a733c2a2ff1b97880e7e3c76f4f5f6.tar.gz AUR4-PKGBUILD-dfb5d53df9a733c2a2ff1b97880e7e3c76f4f5f6.tar.zst AUR4-PKGBUILD-dfb5d53df9a733c2a2ff1b97880e7e3c76f4f5f6.zip |
guile-sqlite3: 0.1.0 (initial commit)
It is pulled in by Guix 0.15.0.
-rw-r--r-- | guile-sqlite3/.SRCINFO | 17 | ||||
-rw-r--r-- | guile-sqlite3/PKGBUILD | 29 |
2 files changed, 46 insertions, 0 deletions
diff --git a/guile-sqlite3/.SRCINFO b/guile-sqlite3/.SRCINFO new file mode 100644 index 0000000..9fd8a30 --- /dev/null +++ b/guile-sqlite3/.SRCINFO @@ -0,0 +1,17 @@ +# Generated by mksrcinfo v8 +# Sun Jul 15 08:25:32 UTC 2018 +pkgbase = guile-sqlite3 + pkgdesc = Guile bindings for the SQLite3 database engine + pkgver = 0.1.0 + pkgrel = 1 + url = https://notabug.org/civodul/guile-sqlite3 + arch = x86_64 + arch = i686 + license = LGPL3 + depends = guile + depends = sqlite3 + source = https://notabug.org/civodul/guile-sqlite3/archive/v0.1.0.tar.gz + sha256sums = 7501cd60bc693e581dc3e153f418279e1e1637c0760bc4524af6eb2d8eac2fe9 + +pkgname = guile-sqlite3 + diff --git a/guile-sqlite3/PKGBUILD b/guile-sqlite3/PKGBUILD new file mode 100644 index 0000000..eb158a9 --- /dev/null +++ b/guile-sqlite3/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: lantw44 (at) gmail (dot) com + +pkgname=guile-sqlite3 +pkgver=0.1.0 +pkgrel=1 +pkgdesc='Guile bindings for the SQLite3 database engine' +arch=('x86_64' 'i686') +url="https://notabug.org/civodul/guile-sqlite3" +license=('LGPL3') +depends=('guile' 'sqlite3') +source=("https://notabug.org/civodul/${pkgname}/archive/v${pkgver}.tar.gz") +sha256sums=('7501cd60bc693e581dc3e153f418279e1e1637c0760bc4524af6eb2d8eac2fe9') + +build() { + cd "${srcdir}/${pkgname}" + autoreconf -fi + ./configure --prefix=/usr + make +} + +check() { + cd "${srcdir}/${pkgname}" + make check +} + +package() { + cd "${srcdir}/${pkgname}" + make DESTDIR="${pkgdir}" install +} |