opt/gdb/Pkgfile
2009-06-11 16:38:03 +02:00

22 lines
479 B
Plaintext

# Description: The GNU Debugger (GDB)
# URL: http://sources.redhat.com/gdb/
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: ncurses
name=gdb
version=6.8
release=2
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 gdb.diff)
build() {
cd $name-$version
# fix the build with gcc 4.4:
patch -p1 -i $SRC/gdb.diff
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/{info,share,lib,include}
}