summaryrefslogtreecommitdiff
path: root/community/libcss/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/libcss/PKGBUILD')
-rw-r--r--community/libcss/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/community/libcss/PKGBUILD b/community/libcss/PKGBUILD
deleted file mode 100644
index 4c5fb155e..000000000
--- a/community/libcss/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $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: