mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
792 B
Bash
22 lines
792 B
Bash
# $Id: PKGBUILD 35892 2009-04-18 02:42:42Z eric $
|
|
# Maintainer: aurelien <aurelien@archlinux.org>
|
|
# Contributor: Aurelien Foret <orelien@chez.com>
|
|
pkgname=setserial
|
|
pkgver=2.17
|
|
pkgrel=3
|
|
pkgdesc="Allows to change various attributes of a serial device."
|
|
arch=('i686' 'x86_64')
|
|
url="http://setserial.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz $pkgname.patch)
|
|
md5sums=('c4867d72c41564318e0107745eb7a0f2' '99919d3be7c1550721494070a7ace66a')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
patch -Np1 -i ../$pkgname.patch || return 1
|
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
|
make || return 1
|
|
install -d $pkgdir/usr/{bin,share/man/man8}
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|