Advertisement
Guest User

Untitled

a guest
Jun 29th, 2011
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.87 KB | None | 0 0
  1.  
  2. # Maintainer: Your Name <youremail@domain.com>
  3. pkgname=recutils
  4. pkgver=1.3
  5. pkgrel=7
  6. pkgdesc="GNU Recutils is a set of tools and libraries to access human-editable, text-based databases"
  7. arch=(i686 x86_64)
  8. url="http://www.gnu.org/software/recutils/"
  9. license=('GPL3')
  10. #depends=()
  11. makedepends=(make)
  12. optdepends=(openssl curl)
  13. #provides=()
  14. #conflicts=()
  15. #replaces=()
  16. #backup=()
  17. #options=()
  18. install=recutils.install
  19. #changelog=
  20. source=("http://ftp.gnu.org/gnu/recutils/$pkgname-$pkgver.tar.gz"
  21.        )
  22. sha256sums=('f98aab13cb424304ff5421df9454fd11f5099d2986efda0cbeeb13bed3488e7b')
  23. options=(!libtool)
  24.  
  25. build() {
  26.   cd "$srcdir/$pkgname-$pkgver"
  27.  
  28.   ./configure --prefix=/usr
  29.   make
  30. }
  31.  
  32. check() {
  33.  
  34.   cd "$srcdir/$pkgname-$pkgver"
  35.   make check
  36.  
  37. }
  38.  
  39. package() {
  40.   cd "$srcdir/$pkgname-$pkgver"
  41.  
  42.   make DESTDIR="$pkgdir/" install
  43.  
  44. }
  45.  
  46. # vim:set ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement