arch-packages/wxedid/PKGBUILD

31 lines
777 B
Text
Raw Permalink Normal View History

# Maintainer: Manuel Hüsers <aur@huesers.de>
# Contributor: Jonathan Liu <net147@gmail.com>
2018-12-11 01:30:43 +01:00
pkgname=wxedid
pkgver=0.0.32
2023-09-16 12:43:49 +02:00
pkgrel=1
pkgdesc='wxWidgets-based EDID (Extended Display Identification Data) editor'
arch=('x86_64')
url="https://sourceforge.net/projects/${pkgname}/"
license=('GPL-3.0-or-later')
2022-07-15 06:02:20 +02:00
depends=('wxwidgets-gtk3')
source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
sha512sums=('46aaf8a9fb578ea2ed725aa6a60a33f359dc76701226695d1f8e5c252d1fa834dc972fbf1f8788e4045699115bf3e7143bc70bc9d2b6a9731e69e0f51dfb6376')
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
2018-12-11 01:30:43 +01:00
}
check() {
cd "${pkgname}-${pkgver}"
make check
2018-12-11 01:30:43 +01:00
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="$pkgdir" install
2018-12-11 01:30:43 +01:00
}