arch-packages/PKGBUILD

39 lines
783 B
Bash
Raw Normal View History

2018-12-11 01:30:43 +01:00
# Maintainer: Jonathan Liu <net147@gmail.com>
pkgname=wxedid
2019-09-13 05:44:41 +02:00
pkgver=0.0.18
2018-12-11 01:30:43 +01:00
pkgrel=1
pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor"
arch=('i686' 'x86_64')
url="https://sourceforge.net/projects/wxedid/"
license=('GPL3')
depends=('wxgtk2')
source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
'configure.patch')
2019-09-13 05:44:41 +02:00
md5sums=('4098b6355d6a0ed76d06c33bb9499b27'
'1443b5b6e81b32df7c4a5c036603c52f')
2018-12-11 01:30:43 +01:00
prepare() {
cd "$pkgname-$pkgver"
patch -Np1 -i "$srcdir/configure.patch"
}
2019-09-13 05:44:41 +02:00
2018-12-11 01:30:43 +01:00
build() {
cd "$pkgname-$pkgver"
autoreconf -f -i
./configure --prefix=/usr
make
}
check() {
cd "$pkgname-$pkgver"
make -k check
}
package() {
cd "$pkgname-$pkgver"
2019-09-13 05:44:41 +02:00
make DESTDIR="$pkgdir" install
2018-12-11 01:30:43 +01:00
}
# vim:set ts=2 sw=2 et: