initial import
This commit is contained in:
38
gmrun/PKGBUILD
Normal file
38
gmrun/PKGBUILD
Normal file
@@ -0,0 +1,38 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=gmrun
|
||||
pkgver=1.2w
|
||||
pkgrel=1
|
||||
pkgdesc="A simple program which provides a run program window"
|
||||
arch=('x86_64' 'i686')
|
||||
url="https://github.com/wdlkmpx/gmrun/"
|
||||
license=('ISC')
|
||||
depends=('gtk2' 'popt')
|
||||
backup=('etc/gmrunrc')
|
||||
source=("https://github.com/wdlkmpx/${pkgname}/archive/refs/tags/${pkgver}.tar.gz"
|
||||
"libre.patch")
|
||||
sha512sums=('c765e4a0e2c80056ab20600f06eed7038730703a331499b831331311503ecc35628fc1d32380659340bfe12fb295682f106c859b768c37e3b40214185853ee85'
|
||||
'e9303740f2ff6d9357faa24c85515dd7ab6610f8300ed80cca2da8b97f92c7781f962d23ffd85b8f14822c8f05a1f0fcdc316bc8f0ede8d7ade350bf2eb7a8d8')
|
||||
|
||||
prepare() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
|
||||
patch -p1 -i ${srcdir}/libre.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
|
||||
./autogen.sh
|
||||
./configure --prefix=/usr/ \
|
||||
--sysconfdir=/etc/ \
|
||||
--enable-gtk2
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
|
||||
make DESTDIR=${pkgdir} install
|
||||
install -Dm644 LICENSE -t ${pkgdir}/usr/share/licenses/$pkgname
|
||||
}
|
||||
Reference in New Issue
Block a user