diff options
author | Britney Fransen <brfransen@gmail.com> | 2024-05-04 00:42:48 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2024-05-04 00:42:48 (GMT) |
commit | 83f39a71e1d946d7e6d27ce683a012e724b2b230 (patch) | |
tree | 44f0c7eaa1c5d5149df59141f4be4511aa192641 /linhes | |
parent | 1498bab5628d01f960f244b162e93d970bf776ad (diff) | |
download | linhes_pkgbuild-83f39a71e1d946d7e6d27ce683a012e724b2b230.zip linhes_pkgbuild-83f39a71e1d946d7e6d27ce683a012e724b2b230.tar.gz linhes_pkgbuild-83f39a71e1d946d7e6d27ce683a012e724b2b230.tar.bz2 |
wxedid: update to 0.0.31
Diffstat (limited to 'linhes')
-rw-r--r-- | linhes/wxedid/PKGBUILD | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/linhes/wxedid/PKGBUILD b/linhes/wxedid/PKGBUILD index 7fdbe3c..719a0b6 100644 --- a/linhes/wxedid/PKGBUILD +++ b/linhes/wxedid/PKGBUILD @@ -1,31 +1,30 @@ -# Maintainer: Jonathan Liu <net147@gmail.com> +# Maintainer: Manuel Hüsers <aur@huesers.de> +# Contributor: Jonathan Liu <net147@gmail.com> + pkgname=wxedid -pkgver=0.0.29 +pkgver=0.0.31 pkgrel=1 -pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" -arch=('i686' 'x86_64') -url="https://sourceforge.net/projects/wxedid/" +pkgdesc='wxWidgets-based EDID (Extended Display Identification Data) editor' +arch=('x86_64') +url='https://sourceforge.net/projects/wxedid/' license=('GPL3') depends=('wxwidgets-gtk3') -options=('!buildflags') -source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('3fc9e1814ae990752defbd48a14670ec') +source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") +sha512sums=('9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d') build() { - cd "$pkgname-$pkgver" - autoreconf -f -i - ./configure --prefix=/usr - make + cd "${pkgname}-${pkgver}" + autoreconf -f -i + ./configure --prefix=/usr + make } check() { - cd "$pkgname-$pkgver" - make -k check + cd "${pkgname}-${pkgver}" + make -k check } package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir" install + cd "${pkgname}-${pkgver}" + make DESTDIR="$pkgdir" install } - -# vim:set ts=2 sw=2 et: |