PageRenderTime 61ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/minicom/PKGBUILD

http://github.com/lloeki/arch-osx
#! | 23 lines | 20 code | 3 blank | 0 comment | 0 complexity | 6ec79e994601e9febc87ce7036fc88c8 MD5 | raw file
Possible License(s): BSD-3-Clause, Unlicense
  1. # ArchOSX Maintainer: Kevin Barry <barryk gmail com>
  2. # ArchLinux Maintainer: Alexander Baldeck <alexander archlinux.org>
  3. # Contributor: dorphell <dorphell archlinux.org>
  4. # Contributor: Tom Newsom <Jeepster gmx.co.uk>
  5. pkgname=minicom
  6. pkgver=2.3
  7. pkgrel=2
  8. pkgdesc="A serial communication program"
  9. arch=('macx86')
  10. license=('GPL')
  11. depends=('ncurses' )
  12. source=(http://alioth.debian.org/frs/download.php/2332/$pkgname-$pkgver.tar.gz)
  13. url="http://alioth.debian.org/projects/minicom/"
  14. md5sums=('0ebe7a91898384ca906787cc4e2c3f25')
  15. build() {
  16. cd $srcdir/$pkgname-$pkgver
  17. ./configure --prefix=/opt/arch
  18. make || return 1
  19. make DESTDIR=$pkgdir install
  20. }