arch-packages/wxedid/PKGBUILD

32 lines
663 B
Bash
Raw Normal View History

2018-12-11 01:30:43 +01:00
# Maintainer: Jonathan Liu <net147@gmail.com>
pkgname=wxedid
2023-09-16 12:43:49 +02:00
pkgver=0.0.29
pkgrel=1
2018-12-11 01:30:43 +01:00
pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor"
arch=('i686' 'x86_64')
url="https://sourceforge.net/projects/wxedid/"
license=('GPL3')
2022-07-15 06:02:20 +02:00
depends=('wxwidgets-gtk3')
2020-01-08 01:21:49 +01:00
options=('!buildflags')
source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
2023-09-16 12:43:49 +02:00
md5sums=('3fc9e1814ae990752defbd48a14670ec')
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: