Skip to content

Instantly share code, notes, and snippets.

@phyrog
Created December 16, 2014 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phyrog/21c0943338bc1c7f7434 to your computer and use it in GitHub Desktop.
Save phyrog/21c0943338bc1c7f7434 to your computer and use it in GitHub Desktop.
with-readline PKGBUILD script
pkgname=with-readline
pkgver=0.1.1
pkgrel=1
pkgdesc="with-readline is a small program that allows the GNU Readline library to be used with arbitrary programs, without having to recompile those programs"
arch=('i686' 'x86_64')
url="http://www.greenend.org.uk/rjk/sw/withreadline.html"
license=('GPL')
depends=('readline>=6.0.0')
source=("http://www.greenend.org.uk/rjk/sw/with-readline-$pkgver.tar.gz")
sha1sums=('ac32f4b23853024f2a42441fa09b20cbe7617ff5')
build() {
cd "$srcdir/with-readline-$pkgver"
./configure --disable-debug --disable-dependency-tracking --prefix=$pkgdir/usr
make install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment