blob: ada85d9ae09c537f1d65a07dfe964fac400c80f8 (
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
|
# Contributor: Bernhard Walle <bernhard@bwalle.de>
# AUR Category: devel
pkgname=ptxdist
pkgver=2018.02.0
pkgrel=1
pkgdesc="Embedded Linux build system"
arch=('i686' 'x86_64')
url="http://www.ptxdist.org"
license=('GPL')
depends=('dialog' 'flex' 'bison' 'patch' 'python2')
source=("http://www.pengutronix.de/software/ptxdist/download/${pkgname}-${pkgver}.tar.bz2")
md5sums=('68f758b781ce6aeaffc74cedebe5f339')
sha512sums=('5ef131a3d07bafa16f5dd51705fa4d67cae03fedb2d7ec3521e7178297c855700c38c67a6e1114f5c26d98865c760e56d14fb7de87ce2a8d1886825784ab5445')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --with-python=/usr/bin/python2
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
|