Advertisement
Guest User

clipf PKGBUILD

a guest
Aug 14th, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.61 KB | None | 0 0
  1. # Maintainer: Denis Galtsev <galtsevdv@gmail.com>
  2. # Contributor: Will Price <will.price94+aur@gmail.com>
  3.  
  4. pkgname=clipf
  5. pkgver=0.4
  6. pkgrel=2
  7. pkgdesc="clipf is a personal finance manager with command line interface"
  8. arch=('any')
  9. url="http://code.google.com/p/clipf/"
  10. license=('GPL')
  11. depends=('python2')
  12. source=("http://clipf.googlecode.com/files/$pkgname-$pkgver.tgz")
  13. md5sums=('ebdca9d2b4ab40c46958831f79625317')
  14.  
  15. build() {
  16.   cd "$srcdir/$pkgname-$pkgver"
  17.   sed -i 's:#!/usr/bin/python:#!/usr/bin/env python2:g' clipf
  18. }
  19.  
  20. package() {
  21.     cd "$srcdir/$pkgname-$pkgver"
  22.     make ROOTDIR="$pkgdir" install
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement