Skip to content

Instantly share code, notes, and snippets.

@StuntsPT
Created October 22, 2012 12:46
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 StuntsPT/3931335 to your computer and use it in GitHub Desktop.
Save StuntsPT/3931335 to your computer and use it in GitHub Desktop.
PKGBUILD for dreampie
# Contributor: Kyle Keen <keenerd@gmail.com>
# Contributor: Stunts <f.pinamartins@gmail.com>
pkgname=dreampie
pkgver=1.2.1
pkgrel=1
pkgdesc="A Python shell which is designed to be reliable and fun."
arch=('any')
url="http://dreampie.sourceforge.net"
license=('GPL')
depends=('pygtksourceview2')
source=(https://github.com/noamraph/dreampie/tarball/1.2.1)
md5sums=(6d745ce46624ebce91e2aac67ebbfbf1)
build() {
cd ${srcdir}/noamraph-dreampie-becf3e5
python2 setup.py build
}
package() {
cd ${srcdir}/noamraph-dreampie-becf3e5
python2 setup.py install --root ${pkgdir}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment