summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakob Gahde2018-06-29 09:52:25 +0200
committerJakob Gahde2018-06-29 09:52:25 +0200
commitbf593a56e1caeec967756ab59a8cad63a92b2064 (patch)
tree92fb949c10bc80878ba4a5f5977eeeece886c5de
parent46016d03f5fe4ca1ab2a1cc0a63cb07785c8a00c (diff)
downloadaur-bf593a56e1caeec967756ab59a8cad63a92b2064.tar.gz
bglibs 2.04-1: New version
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD24
2 files changed, 11 insertions, 25 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 85c32f582660..32658a43358a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,20 +1,18 @@
# Generated by mksrcinfo v8
-# Sun Feb 28 07:47:43 UTC 2016
+# Fri Jun 29 07:52:09 UTC 2018
pkgbase = bglibs
pkgdesc = BG Libraries Collection
- pkgver = 2.03
+ pkgver = 2.04
pkgrel = 1
url = http://untroubled.org/bglibs
arch = i686
arch = x86_64
license = LGPL
depends = perl
- source = http://untroubled.org/bglibs/archive/bglibs-2.03.tar.gz
- source = http://untroubled.org/bglibs/archive/bglibs-2.03.tar.gz.sig
- source = disable-selftests.patch
- md5sums = dd783759f5f965db82b073c77641b2fa
+ source = http://untroubled.org/bglibs/archive/bglibs-2.04.tar.gz
+ source = http://untroubled.org/bglibs/archive/bglibs-2.04.tar.gz.sig
+ md5sums = 6da684a3d1ef38d517d2c8b0ca33534a
md5sums = SKIP
- md5sums = 624dca4aff06eb026be80b7826eae441
pkgname = bglibs
diff --git a/PKGBUILD b/PKGBUILD
index 6c658acbe591..6f2f9a69fd40 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,27 +2,17 @@
# Contributor: Nathan Owe <ndowens.aur at gmail dot com>
pkgname=bglibs
-pkgver=2.03
+pkgver=2.04
pkgrel=1
pkgdesc="BG Libraries Collection"
arch=('i686' 'x86_64')
url="http://untroubled.org/bglibs"
license=('LGPL')
depends=('perl')
-source=("http://untroubled.org/bglibs/archive/${pkgname}-${pkgver}.tar.gz"{,.sig}
- "disable-selftests.patch")
+source=("http://untroubled.org/bglibs/archive/${pkgname}-${pkgver}.tar.gz"{,.sig})
validpgpkeys=('D0B7C8DD365DA39529DA2E2AE96FB2DC699980E8')
-md5sums=('dd783759f5f965db82b073c77641b2fa'
- 'SKIP'
- '624dca4aff06eb026be80b7826eae441')
-
-prepare() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- # Apparently the selftests rely on resources from the internet that have
- # changed since the tests were created
- patch -Np1 < "${srcdir}/disable-selftests.patch"
-}
+md5sums=('6da684a3d1ef38d517d2c8b0ca33534a'
+ 'SKIP')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
@@ -33,14 +23,12 @@ build() {
echo "/usr/share/man" > conf-man
sed -i "1s/\$/ $(echo -n $CFLAGS | sed 's/[\/&]/\\&/g')/" conf-cc
sed -i "1s/\$/ $(echo -n $LDFLAGS | sed 's/[\/&]/\\&/g')/" conf-ld
-
+
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
-
+
install_prefix="${pkgdir}" make install
}
-
-# vim: ts=2 sw=2 et ft=sh