summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2016-04-25 17:38:48 (GMT)
committerBritney Fransen <brfransen@gmail.com>2016-04-25 17:38:48 (GMT)
commitc0f98d0ae1871ab87340c14c8bceedfcf5207167 (patch)
treec596720ddf4e49ac32c7e81fa2845d8ef61b48bd
parent00484abb2ebe4bdd50d63060b5391e4f91abc92a (diff)
downloadlinhes_pkgbuild-c0f98d0ae1871ab87340c14c8bceedfcf5207167.zip
linhes_pkgbuild-c0f98d0ae1871ab87340c14c8bceedfcf5207167.tar.gz
linhes_pkgbuild-c0f98d0ae1871ab87340c14c8bceedfcf5207167.tar.bz2
libcrossguid: initial inclusion. dep of kodi
-rw-r--r--abs/extra/libcrossguid/PKGBUILD41
1 files changed, 41 insertions, 0 deletions
diff --git a/abs/extra/libcrossguid/PKGBUILD b/abs/extra/libcrossguid/PKGBUILD
new file mode 100644
index 0000000..aff05a7
--- /dev/null
+++ b/abs/extra/libcrossguid/PKGBUILD
@@ -0,0 +1,41 @@
+# Maintainer: BlackEagle <ike DOT devolder AT gmail DOT com>
+
+pkgname=libcrossguid
+_gitname=libcrossguid
+_commit=8f399e8
+pkgver=20150803.$_commit
+pkgrel=1
+pkgdesc="Lightweight cross platform C++ GUID/UUID library"
+arch=('i686' 'x86_64')
+url="https://github.com/graeme-hill/crossguid"
+license=('MIT')
+makedepends=('git')
+provides=('libcrossguid')
+conflicts=('libcrossguid')
+source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit")
+md5sums=('SKIP')
+
+build() {
+ cd libcrossguid
+
+ g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
+ ar rvs libcrossguid.a guid.o
+
+ g++ -c test.cpp -o test.o $CXXFLAGS -std=c++11
+ g++ -c testmain.cpp -o testmain.o $CXXFLAGS
+ g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
+ chmod +x test
+}
+
+check(){
+ cd libcrossguid
+ ./test
+}
+
+package() {
+ cd libcrossguid
+ install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
+ install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
+ install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+