diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/fbpanel/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/fbpanel/PKGBUILD')
-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 +} |