diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/libcss/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/libcss/PKGBUILD')
-rw-r--r-- | community/libcss/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/libcss/PKGBUILD b/community/libcss/PKGBUILD new file mode 100644 index 000000000..4c5fb155e --- /dev/null +++ b/community/libcss/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 89131 2013-04-27 00:42:21Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Brad Fanella <bradfanella@archlinux.us> +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=libcss +pkgver=0.2.0 +pkgrel=1 +pkgdesc='CSS parser and selection engine' +arch=('x86_64' 'i686') +url='http://www.netsurf-browser.org/projects/libcss/' +license=('MIT') +depends=('libparserutils>=0.1.2' 'libwapcaplet>=0.2.0') +makedepends=('netsurf-buildsystem') +source=("http://download.netsurf-browser.org/libs/releases/libcss-$pkgver-src.tar.gz") +sha256sums=('31b08f6f2259366ccad8b455440f364dc33e7dc78cdb0cf4905da56d5372f613') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + export CFLAGS="-Wno-error=unused-but-set-variable" + make PREFIX=/usr COMPONENT_TYPE="lib-shared" + make PREFIX=/usr COMPONENT_TYPE="lib-static" +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make install PREFIX=/usr DESTDIR="$pkgdir" COMPONENT_TYPE="lib-shared" + make install PREFIX=/usr DESTDIR="$pkgdir" COMPONENT_TYPE="lib-static" + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" +} + +# vim:set ts=2 sw=2 et: |