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/fbpanel | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/fbpanel')
-rw-r--r-- | community/fbpanel/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/fbpanel/PKGBUILD b/community/fbpanel/PKGBUILD new file mode 100644 index 000000000..5edf5f2a1 --- /dev/null +++ b/community/fbpanel/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 65166 2012-02-20 06:59:42Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Jeff Mickey <jeff@archlinux.org> +# Contributor: Torin Daniel <torindan@gmail.com> + +pkgname=fbpanel +pkgver=6.1 +pkgrel=3 +pkgdesc="NetWM compliant desktop panel" +arch=('i686' 'x86_64') +url="http://fbpanel.sourceforge.net/" +depends=('gtk2') +license=('GPL') +source=(http://downloads.sourceforge.net/fbpanel/fbpanel-${pkgver}.tbz2) +md5sums=('80ca0c64195b30587cfcb8c2cd9887a0') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + echo "LDFLAGSX += -lX11 -lm" >>config.mk + make + make DESTDIR="$pkgdir/" install +} |