blob: 16a5a8ff078b26585895f9b617ee0a9e72aa38d7 (
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
31
32
33
34
35
|
#Maintainer : Michal Wojdyla < micwoj9292 at gmail dot com >
#Contributor: Brian Bidulock <bidulock@openss7.org>
pkgdesc="SR-71 Blackbird theme pack for XDE"
pkgname=xde-theme-blackbirds
_commit=cdd1bc552200892e36d68fc25f1d3d63dba01e40
pkgver=1.2.5
pkgrel=1
url="http://www.unexicon.com/"
license=('CCPL:by-nc-nd')
arch=('any')
groups=('xde')
depends=('xde-styles')
makedepends=('git')
source=("$pkgname::git+https://github.com/bbidulock/xde-theme-blackbirds.git#commit=$_commit")
md5sums=('SKIP')
# Leaving this for pkgver bumps, not really needed for users hence commenting out.
#pkgver() {
# cd $pkgname
# ./autogen.sh
# ./configure --version|head -1|awk '{print$3}'
#
#}
build() {
cd $pkgname
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd $pkgname
make DESTDIR="$pkgdir" install
}
|