diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-02 13:37:59 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-02 13:37:59 -0300 |
commit | 3383a1fbd954b78716dd8ff9d9f2097e176d2279 (patch) | |
tree | 68aa3acbd50e6d0d7bdcfa2947d1772f7edb8a0d /extra/minicom | |
parent | 7f3d7e2203a9252280361a1d095528cb056d08dc (diff) | |
parent | 9e9ab642711f2424f828e21d14b98c45cdef2b29 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community-testing/packagekit/PKGBUILD
community/liboglappth/PKGBUILD
community/texvc/PKGBUILD
extra/libvdpau/PKGBUILD
extra/minicom/PKGBUILD
extra/muparser/PKGBUILD
extra/netkit-bsd-finger/PKGBUILD
extra/normalize/PKGBUILD
Diffstat (limited to 'extra/minicom')
-rw-r--r-- | extra/minicom/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/extra/minicom/PKGBUILD b/extra/minicom/PKGBUILD index f6fffb742..9501083fd 100644 --- a/extra/minicom/PKGBUILD +++ b/extra/minicom/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 108740 2011-02-02 18:46:01Z giovanni $ +# $Id: PKGBUILD 143903 2011-11-30 20:19:03Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: dorphell <dorphell@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=minicom pkgver=2.5 -pkgrel=1 +pkgrel=2 pkgdesc="A serial communication program" arch=('i686' 'x86_64' 'mips64el') +url="http://alioth.debian.org/projects/minicom/" license=('GPL') depends=('bash' 'ncurses') backup=('etc/minirc.dfl') source=("http://alioth.debian.org/frs/download.php/3487/${pkgname}-${pkgver}.tar.gz") -url="http://alioth.debian.org/projects/minicom/" md5sums=('a5117d4d21e2c9e825edb586ee2fe8d2') build() { @@ -20,12 +20,12 @@ build() { ./configure --prefix=/usr \ --sysconfdir=/etc - make || return 1 + make } package() { cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}/" install || return 1 - install -Dm644 doc/minirc.dfl ${pkgdir}/etc/minirc.dfl || return 1 + make DESTDIR="${pkgdir}/" install + install -Dm644 doc/minirc.dfl ${pkgdir}/etc/minirc.dfl } |