From d58341e868480819ccb20894d9a819a3d2284ed1 Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Wed, 15 Jun 2016 13:50:33 +0200 Subject: [PATCH] Renamed libpcre -> pcre We want to stay as close as possible to the name of the source distribution. --- core/Buildfile | 2 +- glib/Buildfile | 2 +- grep/Buildfile | 2 +- {libpcre => pcre}/Buildfile | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) rename {libpcre => pcre}/Buildfile (78%) diff --git a/core/Buildfile b/core/Buildfile index 5f32332..99cd6d7 100644 --- a/core/Buildfile +++ b/core/Buildfile @@ -14,7 +14,7 @@ depends=(acl kmod libcap libgcrypt - libpcre + pcre gdbm man-db ncurses diff --git a/glib/Buildfile b/glib/Buildfile index 5393ab8..4a65f6f 100644 --- a/glib/Buildfile +++ b/glib/Buildfile @@ -6,7 +6,7 @@ name=glib version=2.48.1 release=1 source=(http://ftp.gnome.org/pub/gnome/sources/glib/${version%.*}/$name-$version.tar.xz) -depends=(zlib libffi libpcre) +depends=(zlib libffi pcre) build() { cd $name-$version diff --git a/grep/Buildfile b/grep/Buildfile index a0557db..1fddd6c 100644 --- a/grep/Buildfile +++ b/grep/Buildfile @@ -6,7 +6,7 @@ name=grep version=2.25 release=1 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) -depends=libpcre +depends=pcre build() { cd $name-$version diff --git a/libpcre/Buildfile b/pcre/Buildfile similarity index 78% rename from libpcre/Buildfile rename to pcre/Buildfile index 48ab468..1e4b00a 100644 --- a/libpcre/Buildfile +++ b/pcre/Buildfile @@ -2,13 +2,13 @@ # URL: http://www.pcre.org # License: BSD -name=libpcre -version=8.38 +name=pcre +version=8.39 release=1 -source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2) +source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/$name/$name-$version.tar.bz2) build() { - cd pcre-$version + cd $name-$version ./configure --build=$BUILD \ --host=$HOST \