First AUR release

This commit is contained in:
Douglas McFadzean 2016-05-25 18:07:54 +01:00
commit dd86333cc2
3 changed files with 59 additions and 0 deletions

18
.SRCINFO Normal file
View file

@ -0,0 +1,18 @@
# Generated by mksrcinfo v8
# Wed May 25 14:06:46 UTC 2016
pkgbase = runa
pkgdesc = Fast and light desktop application launcher
pkgver = 1.1.0
pkgrel = 1
url = http://appstogo.mcfadzean.org.uk/linux.html#runa
arch = any
license = custom:MPL2
depends = bash
depends = dmenu
depends = libnotify
optdepends = gxmessage: to view .desktop files
source = http://appstogo.mcfadzean.org.uk/dl/runa/runa-1.1.0.tar.gz
md5sums = 21d93f29aebdeed4c79cd69cb03dc024
pkgname = runa

30
PKGBUILD Normal file
View file

@ -0,0 +1,30 @@
# Maintainer: ninian <mcfadzean.org.uk ta linux>
pkgname=runa
pkgver=1.1.0
pkgrel=1
pkgdesc="Fast and light desktop application launcher"
arch=('any')
url="http://appstogo.mcfadzean.org.uk/linux.html#runa"
license=('custom:MPL2')
depends=('bash' 'dmenu' 'libnotify')
optdepends=('gxmessage: to view .desktop files')
source=("http://appstogo.mcfadzean.org.uk/dl/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('21d93f29aebdeed4c79cd69cb03dc024')
package() {
cd "$srcdir/${pkgname}-$pkgver"
gzip ${pkgname}.1
install -Dm755 ${pkgname} "$pkgdir/usr/bin/${pkgname}"
install -Dm644 ${pkgname}.png "$pkgdir/usr/share/pixmaps/${pkgname}.png"
install -Dm644 ${pkgname}.desktop "$pkgdir/usr/share/applications/${pkgname}.desktop"
install -Dm644 ${pkgname}.conf "$pkgdir/usr/share/doc/${pkgname}/${pkgname}.conf"
install -Dm644 ${pkgname}.fav "$pkgdir/usr/share/doc/${pkgname}/${pkgname}.fav"
install -Dm644 ${pkgname}.1.gz "$pkgdir/usr/share/man/man1/${pkgname}.1.gz"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 README "$pkgdir/usr/share/doc/${pkgname}/README"
install -Dm644 CHANGELOG "$pkgdir/usr/share/doc/${pkgname}/CHANGELOG"
install -Dm755 xdg-open "$pkgdir/usr/share/doc/${pkgname}/xdg-open"
msg "Copy sample configuration file /usr/share/doc/${pkgname}/${pkgname}.conf and customize per user"
msg "See 'man ${pkgname}' and /usr/share/doc/${pkgname}/README for more information"
}

11
runa.install Normal file
View file

@ -0,0 +1,11 @@
post_install() {
update-desktop-database -q
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}