initial import
This commit is contained in:
24
roundup/PKGBUILD
Normal file
24
roundup/PKGBUILD
Normal file
@@ -0,0 +1,24 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=roundup
|
||||
pkgver=2.4.0
|
||||
pkgrel=1
|
||||
pkgdesc="A free software, simple-to-use and install issue-tracking system with command-line, web and e-mail interfaces"
|
||||
arch=('any')
|
||||
url='https://www.roundup-tracker.org'
|
||||
license=('Python' 'Expat' 'Zope-2.0')
|
||||
depends=('python-psycopg2')
|
||||
makedepends=('python-setuptools')
|
||||
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/roundup-tracker/roundup/archive/refs/tags/${pkgver}.tar.gz")
|
||||
sha512sums=('4ac289dce0c78e604226eb97245eb52c0a9b67a1254fe72609daa6786981fe9ac62d3bdb884fdac82b485b9584bb67b5c56dbc957ba2576bd8ce580e2e09b380')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
python setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
python setup.py install --prefix="/usr" --root="$pkgdir" --optimize=1
|
||||
install -Dm644 COPYING.txt -t "$pkgdir/usr/share/licenses/$pkgname"
|
||||
}
|
||||
Reference in New Issue
Block a user