Various compilation scripts & patches for Linux programs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. # Maintainer: Pekka Helenius <fincer89 [at] hotmail [dot] com>
  2. # Contributor: Andreas B. Wagner <AndreasBWagner@pointfree.net> pointfree on irc.freenode.net
  3. # Contributor: scrawl <scrawl@baseoftrash.de>
  4. pkgname=haguichi
  5. pkgver=1.0.26
  6. _series=1.0
  7. pkgrel=1
  8. pkgdesc="Hamachi GUI"
  9. arch=('any')
  10. url="http://www.haguichi.net"
  11. license=('GPL2')
  12. depends=('logmein-hamachi' 'gconf-sharp' 'notify-sharp' 'gtk2')
  13. makedepends=('make')
  14. #source=("http://launchpad.net/${pkgname}/$_series/${pkgver}/+download/${pkgname}-${pkgver}-clr4.0.tar.gz")
  15. source=(
  16. 'haguichi-1.0.26-clr4.0.tar.gz'
  17. 'fix-hamachi-not-detected.patch'
  18. )
  19. sha256sums=('e65fad7961cd8152ca8a47477c55ba9d1f4a12fdc602c04d32fed1b29c2266b4'
  20. '2015c65d7081fd1fc06357c8b58603b78a063e3d38bea3dfd4b06d8fb35f49e2')
  21. prepare() {
  22. cd ${srcdir}/${pkgname}-${pkgver}
  23. patch -Np1 -i "${srcdir}/fix-hamachi-not-detected.patch"
  24. }
  25. build() {
  26. cd ${srcdir}/${pkgname}-${pkgver}
  27. ./configure --prefix=/usr
  28. }
  29. check() {
  30. cd ${srcdir}/${pkgname}-${pkgver}
  31. make -k check
  32. }
  33. package() {
  34. cd ${srcdir}/${pkgname}-${pkgver}
  35. make DESTDIR=${pkgdir} install
  36. }