mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-13 14:24:02 +00:00
63 lines
2.1 KiB
Bash
63 lines
2.1 KiB
Bash
#! /bin/bash
|
|
|
|
# libcddb
|
|
# Source: https://downloads.sourceforge.net/libcddb/libcddb-1.3.2.tar.bz2
|
|
#
|
|
# $BUILD = Directory to temporarily install
|
|
# $PKGS = Directory to store built packages
|
|
#
|
|
# DEPS
|
|
# Required: NONE
|
|
# Recommended: NONE
|
|
# Optional: NONE
|
|
|
|
# If coptimizing with GCC:
|
|
export CFLAGS="-march=native -pipe "
|
|
export CFLAGS+="-O3 -ffat-lto-objects -flto=4 "
|
|
export CXXFLAGS=$CFLAGS
|
|
export LDFLAGS="-flto=4 -Wl,-O2 -Wl,--as-needed "
|
|
|
|
cp -v ../files/config.sub-musl config.sub &&
|
|
cp -v ../files/config.guess-musl config.guess &&
|
|
|
|
# Per BLFS, this package accesses freedb.org, which is already closed.
|
|
# Modify the default to use gnudb.gnudb.org instead, and fix two stale
|
|
# test data files:
|
|
sed -e '/DEFAULT_SERVER/s/freedb.org/gnudb.gnudb.org/' \
|
|
-e '/DEFAULT_PORT/s/888/&0/' \
|
|
-i include/cddb/cddb_ni.h
|
|
sed '/^Genre:/s/Trip-Hop/Electronic/' -i tests/testdata/920ef00b.txt &&
|
|
sed '/DISCID/i# Revision: 42' -i tests/testcache/misc/12340000
|
|
|
|
./configure --prefix=/usr --disable-static $BUILDTRUPLE &&
|
|
|
|
read -p "Compile?" && make -j2 &&
|
|
|
|
sudo -S make DESTDIR=$BUILD install &&
|
|
|
|
cd $BUILD && sudo -S mkdir -v ${BUILD}/install &&
|
|
cat > /tmp/slack-desc << "EOF"
|
|
# HOW TO EDIT THIS FILE:
|
|
# The "handy ruler" below makes it easier to edit a package description. Line
|
|
# up the first '|' above the ':' following the base package name, and the '|'
|
|
# on the right side marks the last column you can put a character in. You must
|
|
# make exactly 11 lines for the formatting to be correct. It's also
|
|
# customary to leave one space after the ':' except on otherwise blank lines.
|
|
|
|
|-----handy-ruler------------------------------------------------------|
|
|
libcddb: libcddb (An online CD database library)
|
|
libcddb:
|
|
libcddb: Libcddb is a library that implements the different protocols (CDDBP,
|
|
libcddb: HTTP, SMTP) to access data on a CDDB server (http://freedb.org).
|
|
libcddb:
|
|
libcddb: Visit the project at: http://libcddb.sourceforge.net/
|
|
libcddb:
|
|
libcddb:
|
|
libcddb:
|
|
libcddb:
|
|
libcddb:
|
|
EOF
|
|
sudo -S mv -v /tmp/slack-desc install/ &&
|
|
sudo -S makepkg -l y -c n $PKGS/libcddb-1.3.2-$PSUFFIX &&
|
|
sudo -S rm -rf ${BUILD}/*
|