mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
655 B
Bash
23 lines
655 B
Bash
# $Id: PKGBUILD 27784 2009-02-25 23:31:22Z eric $
|
|
# Contributor: orelien <orelien@chez.com>
|
|
#
|
|
|
|
pkgname=windowmaker-extra
|
|
pkgver=0.1
|
|
pkgrel=3
|
|
pkgdesc="Extra WindowMaker icons and themes."
|
|
arch=(i686 x86_64)
|
|
url="http://www.windowmaker.info"
|
|
license=('GPL2')
|
|
depends=('windowmaker')
|
|
source=(http://www.sgiweb.org/freeware/source/windowmaker-extra/windowmaker-extra-$pkgver.tar.gz)
|
|
md5sums=('3ef850cfe0fb6660a55ccc8a2e408f74')
|
|
|
|
build() {
|
|
cd $srcdir/WindowMaker-extra-$pkgver
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
rm -f $pkgdir/usr/share/WindowMaker/Icons/xv.xpm
|
|
}
|
|
# vim: ts=2 sw=2 et ft=sh
|