blob: 3b57c5d13fb21143abb793594cab25a41ecc0f72 (
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
36
37
|
# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
. helper.sh
# provides:
# _get_pkgver
# _get_depends
# _get_depends_nover (no version requirements)
pkgname=parabolaweb-utils
pkgver=`_get_pkgver`
pkgrel=1
pkgdesc="Utils for the Parabola website"
arch=('any')
url="https://projects.parabolagnulinux.org/parabolaweb.git/"
license=('GPL2')
depends=('python2' 'git' 'libretools' `_get_depends`)
export pkgver
source=(git://parabolagnulinux.org/parabolaweb.git
parabolaweb.init.sh
update-parabolaweb)
build() {
:
}
package() {
cd "${srcdir}"
install -d "${pkgdir}/${_install_dir}"
install -Dm755 parabolaweb.init.sh "${pkgdir}/etc/rc.d/parabolaweb"
install -Dm755 update-parabolaweb "${pkgdir}/usrls/sbin/update-parabolaweb"
}
md5sums=('SKIP'
'f52aebbedaa61f688fb2bc626a783003'
'dd05d6a4ea7cff7fdd789f59aeb9059a')
|