mirror of
https://github.com/pygos/build.git
synced 2024-11-23 03:29:46 +01:00
ffacb26218
Instead of having a "depends" file with a list of packages, add a "DEPENDS" variable to the build script. Generate the rootfs dependencies from a config file stored in the cfg directory. Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
18 lines
255 B
Text
Executable file
18 lines
255 B
Text
Executable file
VERSION="1.0.3"
|
|
SRCDIR="mpc-$VERSION"
|
|
TARBALL="mpc-$VERSION.tar.gz"
|
|
URL="http://ftp.gnu.org/gnu/mpc"
|
|
SHA256SUM="617decc6ea09889fb08ede330917a00b16809b8db88c29c31bfbb49cbf88ecc3"
|
|
DEPENDS=""
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
return
|
|
}
|
|
|
|
deploy() {
|
|
return
|
|
}
|