Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2-wip.git;a=commitdiff;h=07797d50f0c8f1e5c22beac62570a37c902a8412
commit 07797d50f0c8f1e5c22beac62570a37c902a8412 Author: Michel Hermier <[email protected]> Date: Fri Aug 8 11:08:33 2014 +0200 pacman-g2-3.90.0-1-x86_64 * Use single quote around constant strings. diff --git a/source/base/pacman-g2/FrugalBuild b/source/base/pacman-g2/FrugalBuild index d68b209..94d778b 100644 --- a/source/base/pacman-g2/FrugalBuild +++ b/source/base/pacman-g2/FrugalBuild @@ -2,25 +2,25 @@ # Maintainer: James Buren <[email protected]> # Contributor: Miklos Vajna <[email protected]> -USE_DEBUG=${USE_DEBUG:-"y"} -USE_DEVEL=${USE_DEVEL:-"y"} -USE_MINIMAL=${USE_MINIMAL:-"n"} -USE_STABLE=${USE_STABLE:-"n"} +USE_DEBUG=${USE_DEBUG:-'y'} +USE_DEVEL=${USE_DEVEL:-'y'} +USE_MINIMAL=${USE_MINIMAL:-'n'} +USE_STABLE=${USE_STABLE:-'n'} -pkgname=pacman-g2 -pkgver=3.90.0 +pkgname='pacman-g2' +pkgver='3.90.0' pkgrel=1 -pkgdesc="A .tar.xz based package manager library (libpacman) and client (pacman-g2) with dependency support." -url="http://ftp.frugalware.org/pub/other/pacman-g2/" +pkgdesc='A .tar.xz based package manager library (libpacman) and client (pacman-g2) with dependency support.' +url='http://ftp.frugalware.org/pub/other/pacman-g2/' backup=(etc/{makepkg,pacman-g2}.conf etc/pacman-g2/repos/{frugalware,frugalware-current}) depends=('libarchive' 'libpaccurl') makedepends=('asciidoc' 'docbook-xml' 'docbook-xsl' 'sgml-common') if Fuse MINIMAL; then - _F_cmake_confopts="-DDISABLE_BINDINGS=1" + _F_cmake_confopts='-DDISABLE_BINDINGS=1' else ## temporarily disable some makedepends makedepends+=('po4a' 'swig' 'cvs' 'vala') - if [ "$CARCH" != "arm" ]; then + if [ "$CARCH" != 'arm' ]; then makedepends+=('doxygen>=1.7.3-1') fi options+=('scriptlet') @@ -30,7 +30,7 @@ Finclude cmake groups=('base' 'chroot-core') archs=('i686' 'x86_64' 'arm') _F_archive_nosort=y -up2date="Flasttar $url/releases/" +up2date="Flasttar '$url/releases/'" if ! Fuse $USE_DEVEL; then source=($url/releases/$pkgname-$pkgver.tar.gz) @@ -42,18 +42,18 @@ if ! Fuse $USE_DEVEL; then fi else _F_scm_tag="$pkgver" - _F_scm_type="git" - _F_scm_url="http://frugalware.org/git/pub/other/pacman-g2/pacman-g2" + _F_scm_type='git' + _F_scm_url='http://frugalware.org/git/pub/other/pacman-g2/pacman-g2' Finclude scm fi if ! Fuse $USE_DEBUG; then - _F_cmake_type="Release" + _F_cmake_type='Release' else - _F_cmake_type="Debug" + _F_cmake_type='Debug' options=("${options[@]}" 'nostrip') - CFLAGS+=" -O0 -g3 -ggdb3" - CXXFLAGS+=" -O0 -g3 -ggdb3" + CFLAGS+=' -O0 -g3 -ggdb3' + CXXFLAGS+=' -O0 -g3 -ggdb3' fi build() _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
