Fixing the .deb
This commit is contained in:
parent
b63df1340f
commit
b77e25a523
7
Makefile
7
Makefile
|
|
@ -40,8 +40,11 @@ build-chicken:
|
||||||
compile-scheme.scm
|
compile-scheme.scm
|
||||||
|
|
||||||
deb: build-gauche
|
deb: build-gauche
|
||||||
mkdir -p deb/bin
|
mkdir -p deb/usr/local/bin
|
||||||
cp compile-scheme deb/bin/
|
cp compile-scheme deb/usr/local/bin/
|
||||||
|
mkdir -p deb/usr/local/lib/compile-scheme
|
||||||
|
cp compile-scheme.scm deb/usr/local/lib/compile-scheme/
|
||||||
|
cp -r libs/ deb/usr/local/lib/compile-scheme/
|
||||||
mkdir -p deb/DEBIAN
|
mkdir -p deb/DEBIAN
|
||||||
printf "Package: compile-scheme\nArchitecture: amd64\nDepends: gauche\nVersion: ${VERSION}\nSection: misc\nMaintainer: Retropikzel <retropikzel@iki.fi>\nDescription: SRFI 138: Compiling Scheme programs to executables - Implementation\n" \
|
printf "Package: compile-scheme\nArchitecture: amd64\nDepends: gauche\nVersion: ${VERSION}\nSection: misc\nMaintainer: Retropikzel <retropikzel@iki.fi>\nDescription: SRFI 138: Compiling Scheme programs to executables - Implementation\n" \
|
||||||
> deb/DEBIAN/control
|
> deb/DEBIAN/control
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue