blob: c5e688818adb310f08a8c583dea5a5c9f6eb487d (
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
|
# Maintainer: Rene Hahne <rehahne@gmail.com>
_pkgname=izulu
pkgname=${_pkgname}-git
pkgver=1.0.1
pkgrel=1
pkgdesc='weather aware desktop background images'
arch=('any')
url='https://github.com/onli/izulu'
license=('GPL')
depends=( 'bash' 'imagemagick' 'perl-xml-twig' 'bc' 'jq' )
makedepends=( 'git' )
source=("${_pkgname}::git+https://github.com/onli/izulu.git")
sha1sums=('SKIP')
pkgver() {
cd ${_pkgname}
_ver=${pkgver}".$(git rev-parse --short HEAD)"
echo "${_ver}"
}
build() {
cd ${_pkgname}
make
}
package() {
cd ${_pkgname}
make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et:
|