summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvy Foster2018-01-25 20:30:57 -0600
committerIvy Foster2018-01-25 20:35:20 -0600
commit4741580393677b91230f0d69633d56df59feae0a (patch)
tree00faf7ed93b706fad4d772e5b092cc35df8fda59
parent33a4de333c3fb2def26d4f27ca4d74139c47389d (diff)
downloadaur-4741580393677b91230f0d69633d56df59feae0a.tar.gz
Provide checksums, remove changelog
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD13
-rw-r--r--libbulletml.changelog3
3 files changed, 11 insertions, 12 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0b1c3ab43563..37585c742255 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = libbulletml
pkgdesc = C++ library to handle BulletML, a markup language to describe bullets in shooting games.
pkgver = 0.0.6
- pkgrel = 1
+ pkgrel = 2
url = http://shinh.skr.jp/libbulletml/index_en.html
- changelog = libbulletml.changelog
arch = x86_64
arch = i686
license = custom:libbulletml
@@ -11,8 +10,8 @@ pkgbase = libbulletml
source = http://shinh.skr.jp/libbulletml/libbulletml-0.0.6.tar.bz2
source = http://shinh.skr.jp/d/d_cpp.tar.bz2
source = http://http.debian.net/debian/pool/main/b/bulletml/bulletml_0.0.6-5.debian.tar.bz2
- sha256sums = SKIP
- sha256sums = SKIP
+ sha256sums = 7c37f3d2d52825417c5de716f89bea4b71156371e698e2579daf7921df07aa79
+ sha256sums = f0a9f01ef9daaa980f876253c81e8e76eea17b7de1aa569bf23661b456c5c9d3
sha256sums = f6ef24ea2dd1d572bee08207176d150b3a52b7075e4da9a05af3376fd8cbb672
pkgname = libbulletml
diff --git a/PKGBUILD b/PKGBUILD
index 64b62cbdf134..636d957f3630 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,20 +1,22 @@
-# Contributor: Ivy Foster <ivy.foster@gmail.com>
+# Contributor: Ivy Foster <code@escondida.tk>
# Reference: PKGBUILD(5)
pkgname=libbulletml
pkgver=0.0.6
-pkgrel=1
+pkgrel=2
pkgdesc='C++ library to handle BulletML, a markup language to describe bullets in shooting games.'
url='http://shinh.skr.jp/libbulletml/index_en.html'
license=('custom:libbulletml')
-changelog='libbulletml.changelog'
arch=('x86_64' 'i686')
source=("http://shinh.skr.jp/libbulletml/libbulletml-$pkgver.tar.bz2"
'http://shinh.skr.jp/d/d_cpp.tar.bz2'
"http://http.debian.net/debian/pool/main/b/bulletml/bulletml_$pkgver-5.debian.tar.bz2")
-# upstream does not provide checksums, though Debian does for their patches
-sha256sums=('SKIP' 'SKIP'
+# Upstream does not provide checksums, though Debian does for their patches,
+# so take the first two checksums with a grain of salt.
+sha256sums=(
+ '7c37f3d2d52825417c5de716f89bea4b71156371e698e2579daf7921df07aa79'
+ 'f0a9f01ef9daaa980f876253c81e8e76eea17b7de1aa569bf23661b456c5c9d3'
'f6ef24ea2dd1d572bee08207176d150b3a52b7075e4da9a05af3376fd8cbb672')
noextract=('d_cpp.tar.bz2')
@@ -30,6 +32,7 @@ build() {
cd bulletml
make -C src libbulletml.a
rm -f src/*.o src/*/*.o # yes, really, this actually *is* necessary
+ # So is this fun with flags
make -C src CFLAGS="$CFLAGS -fPIC -fpic" CXXFLAGS="$CFLAGS -fPIC -fpic" \
LDFLAGS="-Wl,-z,defs" libbulletml.so
}
diff --git a/libbulletml.changelog b/libbulletml.changelog
deleted file mode 100644
index 271d90e64932..000000000000
--- a/libbulletml.changelog
+++ /dev/null
@@ -1,3 +0,0 @@
-2015-12-11 Ivy Foster <ivy.foster@gmail.com>
- * 0.0.6-1:
- - Initial commit