mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
added extra/socat 1.7.2.1-1.1, fixes #258
This commit is contained in:
parent
9988246388
commit
408fba8d94
1 changed files with 34 additions and 0 deletions
34
extra/socat/PKGBUILD
Normal file
34
extra/socat/PKGBUILD
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
# $Id: PKGBUILD 159299 2012-05-21 08:16:43Z bisson $
|
||||||
|
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
|
||||||
|
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
|
||||||
|
# Contributor: John Proctor <jproctor@prium.net>
|
||||||
|
|
||||||
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||||
|
# rebuild to remove libwrap.so dep, remove when bumped upstream.
|
||||||
|
|
||||||
|
pkgname=socat
|
||||||
|
pkgver=1.7.2.1
|
||||||
|
pkgrel=1.1
|
||||||
|
pkgdesc='Multipurpose relay'
|
||||||
|
url='http://www.dest-unreach.org/socat/'
|
||||||
|
license=('GPL2')
|
||||||
|
arch=('i686' 'x86_64')
|
||||||
|
depends=('readline' 'openssl')
|
||||||
|
source=("http://www.dest-unreach.org/socat/download/${pkgname}-${pkgver}.tar.gz")
|
||||||
|
sha1sums=('6e3328cc409550b2367efa8028fe4436e84eb490')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
|
||||||
|
make DESTDIR="${pkgdir}" install
|
||||||
|
}
|
Loading…
Reference in a new issue