diff options
Diffstat (limited to 'network/epiphany/epiphany.SlackBuild')
-rw-r--r-- | network/epiphany/epiphany.SlackBuild | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/network/epiphany/epiphany.SlackBuild b/network/epiphany/epiphany.SlackBuild index 17d2b4725e386..33597f55a6167 100644 --- a/network/epiphany/epiphany.SlackBuild +++ b/network/epiphany/epiphany.SlackBuild @@ -21,11 +21,13 @@ # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# June 7, 2023: Bumped to version 43.1, cleaned up, and taken over mtce - Bob Funk cd $(dirname $0) ; CWD=$(pwd) PRGNAM=epiphany -VERSION=${VERSION:-43.0} +VERSION=${VERSION:-43.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -38,9 +40,6 @@ case "$( uname -m )" in esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -81,7 +80,17 @@ find -L . \ mkdir build cd build - CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" meson .. --buildtype=release --infodir=/usr/info --libdir=/usr/lib${LIBDIRSUFFIX} --localstatedir=/var --mandir=/usr/man --prefix=/usr --sysconfdir=/etc -Dstrip=true -Dlibportal=disabled + CFLAGS="$SLKCFLAGS" \ + CXXFLAGS="$SLKCFLAGS" \ + meson .. \ + --buildtype=release \ + --infodir=/usr/info \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --localstatedir=/var \ + --mandir=/usr/man \ + --prefix=/usr \ + --sysconfdir=/etc \ + -Dstrip=true "${NINJA:=ninja}" DESTDIR=$PKG $NINJA install cd .. |