arch-packages/PKGBUILD

32 lines
655 B
Bash
Raw Normal View History

2018-12-11 01:30:43 +01:00
# Maintainer: Jonathan Liu <net147@gmail.com>
pkgname=wxedid
2021-01-13 14:15:48 +01:00
pkgver=0.0.22
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')
2020-01-08 01:21:49 +01:00
options=('!buildflags')
source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
2021-01-13 14:15:48 +01:00
md5sums=('ff22e0420471f2289c38d574bd761856')
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: