Overview
Comment: | Added script to create Slackware package |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fc66612d125d3ceb682259309cf8edb5 |
User & Date: | rkeene on 2015-02-24 18:25:55 |
Other Links: | manifest | tags |
Context
2015-02-24
| ||
18:49 | Added sbindir for mount.appfs check-in: aac1e74eab user: rkeene tags: trunk | |
18:25 | Added script to create Slackware package check-in: fc66612d12 user: rkeene tags: trunk | |
2014-12-29
| ||
04:41 | AppFS 1.4 check-in: 3de2aab453 user: rkeene tags: trunk, 1.4 | |
Changes
Added build/make-slackware-package version [023d46f66e].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | #! /usr/bin/env bash version="$1" version_release='1' platform="$(uname -m)" url="http://rkeene.org/devel/appfs/appfs-${version}.tar.gz" make_args=( prefix=/usr mandir=/usr/man ) if [ -z "${version}" ]; then echo 'Usage: make-slackware-package <version>' >&2 exit 1 fi workdir="${TMPDIR:-/tmp}/appfs-slackware-package-${version}-$$${RANDOM}${RANDOM}${RANDOM}" package="appfs-${version}-${platform}-${version_release}.txz" mkdir "${workdir}" || exit 1 ( PATH="${PATH}:/sbin" set -ex cd "${workdir}" installdir="$(pwd)/installed" wget -O appfs.tar.gz "${url}" tar -xf appfs.tar.gz cd "appfs-${version}" make "${make_args[@]}" make "${make_args[@]}" DESTDIR="${installdir}" install cd "${installdir}" mkdir install cat << \_EOF_ > install/slack-desc appfs: appfs (App Filesystem) appfs: appfs: AppFS is a manifest-based FUSE filesystem that lazily fetches files over HTTP. appfs: It is intended to be a universal packaging format. appfs: appfs: appfs: appfs: appfs: appfs: appfs: _EOF_ makepkg -c n -l y "../${package}" xz -dc "../${package}" | tardy -User 0 -Group 0 | xz -9c > "../${package}.new" mv "../${package}.new" "../${package}" ) || exit 1 mv "${workdir}/${package}" . rm -rf "${workdir}" exit 0 |