blob: 3067e4729b0115b48e4ecdd1c841d7f85187e4d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#Maintainer: Brian Bidulock <bidulock@openss7.org>
pkgdesc="Warthogs theme pack for XDE"
pkgname=xde-theme-warthogs
pkgver=1.2.4
pkgrel=1
url="http://www.unexicon.com/"
license=('CCPL:by-nc-nd')
arch=('any')
groups=('xde')
makedepends=('git')
depends=('xde-styles')
source=("$pkgname::git://github.com/bbidulock/$pkgname.git")
md5sums=('SKIP')
pkgver() {
cd $pkgname
git describe --tags|sed 's,[-_],.,g;s,\.g.*$,,'
}
build() {
cd $pkgname
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd $pkgname
make DESTDIR="$pkgdir" install
}
|