Skip to content

Instantly share code, notes, and snippets.

@antisilent
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antisilent/9844304 to your computer and use it in GitHub Desktop.
Save antisilent/9844304 to your computer and use it in GitHub Desktop.
bashish 2.2.4-1 PKGBUILD
# Contributor: Nick Silva < nowhearthis (at) antisilent (dot) com >
pkgname=bashish
pkgver=2.2.4
pkgrel=1
pkgdesc="Bashish is a theme enviroment for text terminals. It can change colors, font, transparency and background image on a per-application basis."
arch=(i686 x86_64)
url="http://bashish.sourceforge.net/"
license="GPL"
depends=('dialog')
makedepends=('pkgconfig')
source=(http://downloads.sourceforge.net/bashish/$pkgname-$pkgver.tar.gz)
md5sums=('0661cc0040878e921ac7a31b071d20e0')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment