upgpkg: wxedid 0.0.31-1

upstream release
This commit is contained in:
Manuel 2024-04-11 19:45:27 +02:00
parent 76f0ba5644
commit 9473e1da58
Signed by: SunRed
GPG Key ID: 4085037435E1F07A
2 changed files with 20 additions and 23 deletions

View File

@ -1,14 +1,12 @@
pkgbase = wxedid
pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor
pkgver = 0.0.29
pkgver = 0.0.31
pkgrel = 1
url = https://sourceforge.net/projects/wxedid/
arch = i686
arch = x86_64
license = GPL3
depends = wxwidgets-gtk3
options = !buildflags
source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.29.tar.gz
md5sums = 3fc9e1814ae990752defbd48a14670ec
source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.31.tar.gz
sha512sums = 9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d
pkgname = wxedid

View File

@ -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: