mirror of
https://github.com/renbaoshuo/s2oj-gcc.git
synced 2024-11-23 19:48:44 +00:00
chore: add program prefix
This commit is contained in:
parent
e092407ee9
commit
a381b60a03
7
build.sh
7
build.sh
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
GIT_COMMIT=$(git rev-parse --short HEAD)
|
||||||
CURRENT_DIR=$(pwd)
|
CURRENT_DIR=$(pwd)
|
||||||
GCC_VERSION=$(cat GCC_VERSION)
|
GCC_VERSION=$(cat GCC_VERSION)
|
||||||
GCC_GIT="git://gcc.gnu.org/git/gcc.git"
|
GCC_GIT="git://gcc.gnu.org/git/gcc.git"
|
||||||
@ -36,11 +37,11 @@ echo "===> Configuring GCC..."
|
|||||||
build_cd ${CURRENT_DIR}/build
|
build_cd ${CURRENT_DIR}/build
|
||||||
${GCC_SRC}/configure -v \
|
${GCC_SRC}/configure -v \
|
||||||
--enable-languages=c,c++ \
|
--enable-languages=c,c++ \
|
||||||
--prefix=/usr \
|
--program-prefix=s2oj- \
|
||||||
--build=x86_64-linux-gnu \
|
--build=x86_64-linux-gnu \
|
||||||
--host=x86_64-linux-gnu \
|
--host=x86_64-linux-gnu \
|
||||||
--target=x86_64-linux-gnu \
|
--target=x86_64-linux-gnu \
|
||||||
--with-pkgversion="s2oj-gcc-$GCC_VERSION~1baoshuo1"
|
--with-pkgversion="s2oj-gcc $GCC_VERSION-1baoshuo1~${GIT_COMMIT}"
|
||||||
|
|
||||||
# Build GCC
|
# Build GCC
|
||||||
echo "===> Building GCC..."
|
echo "===> Building GCC..."
|
||||||
@ -53,7 +54,7 @@ build_cd ${CURRENT_DIR}/deb
|
|||||||
mkdir -p DEBIAN
|
mkdir -p DEBIAN
|
||||||
cat << EOF > DEBIAN/control
|
cat << EOF > DEBIAN/control
|
||||||
Package: s2oj-gcc
|
Package: s2oj-gcc
|
||||||
Version: $GCC_VERSION~1baoshuo1
|
Version: $GCC_VERSION-1baoshuo1
|
||||||
Section: base
|
Section: base
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Architecture: amd64
|
Architecture: amd64
|
||||||
|
Loading…
Reference in New Issue
Block a user