summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Di Luigi2015-09-22 00:03:10 +0200
committerWilliam Di Luigi2015-09-22 00:03:10 +0200
commit0477a2f506c00fcbd7b1130258d1a754613d8cf4 (patch)
tree5af97aa90c5c2cb891b7abf77a1c89c84575cafa
downloadaur-0477a2f506c00fcbd7b1130258d1a754613d8cf4.tar.gz
First commit
-rw-r--r--.SRCINFO17
-rw-r--r--PKGBUILD33
2 files changed, 50 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..f05113c2b9fb
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,17 @@
+# Generated by makepkg 4.2.1
+# Mon Sep 21 22:02:51 UTC 2015
+pkgbase = libt3config
+ pkgdesc = A library for reading and writing configuration files.
+ pkgver = 0.2.10
+ pkgrel = 1
+ url = http://os.ghalkes.nl/t3/libt3config.html
+ arch = x86_64
+ arch = i686
+ license = GPL3
+ depends = gettext
+ options = !libtool
+ source = http://os.ghalkes.nl/dist/libt3config-0.2.10.tar.bz2
+ md5sums = 33468b8cb3e041c93b02f4b787f5265d
+
+pkgname = libt3config
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..c7b303c1d056
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,33 @@
+# Maintainer: Gertjan Halkes <arch at ghalkes dot nl>
+pkgname=libt3config
+pkgver=0.2.10
+pkgrel=1
+pkgdesc="A library for reading and writing configuration files."
+arch=('x86_64' 'i686')
+url="http://os.ghalkes.nl/t3/$pkgname.html"
+license=('GPL3')
+groups=()
+depends=('gettext')
+makedepends=()
+optdepends=()
+conflicts=()
+replaces=()
+backup=()
+options=('!libtool')
+install=''
+changelog=
+source=("http://os.ghalkes.nl/dist/$pkgname-$pkgver.tar.bz2")
+noextract=()
+md5sums=('33468b8cb3e041c93b02f4b787f5265d')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr CFLAGS="-O2 -D_POSIX_C_SOURCE=200809L"
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ rm -rf "${pkgdir}/usr/share/doc/$pkgname/API"
+}