12345678910111213141516171819 |
- # Description: A run utiliy featuring a slim design and bash style auto-completion.
- # URL: https://github.com/wdlkmpx/gmrun
- # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
- # Depends on: gtk gtk3
- name=gmrun
- version=1.4w
- release=2
- source=(https://github.com/wdlkmpx/$name/archive/refs/tags/$version.tar.gz)
- build() {
- cd $name-$version
- ./configure --prefix=/usr --sysconfdir=/etc
- make
- make DESTDIR=$PKG install
- rm -rf $PKG/usr/share/locale/
- }
|