-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
drwxr-xr-x root/root etc/ | ||
-rw-r--r-- root/root etc/pkgadd.conf | ||
-rw-r--r-- root/root etc/pkgmk.conf | ||
-rw-r--r-- root/root etc/rejmerge.conf | ||
drwxr-xr-x root/root usr/ | ||
drwxr-xr-x root/root usr/bin/ | ||
-rwxr-xr-x root/root usr/bin/pkgadd | ||
lrwxrwxrwx root/root usr/bin/pkginfo -> pkgadd | ||
-rwxr-xr-x root/root usr/bin/pkgmk | ||
lrwxrwxrwx root/root usr/bin/pkgrm -> pkgadd | ||
-rwxr-xr-x root/root usr/bin/rejmerge | ||
drwxr-xr-x root/root usr/share/ | ||
drwxr-xr-x root/root usr/share/man/ | ||
drwxr-xr-x root/root usr/share/man/man5/ | ||
-rw-r--r-- root/root usr/share/man/man5/pkgfile.5.gz | ||
-rw-r--r-- root/root usr/share/man/man5/pkgmk.conf.5.gz | ||
drwxr-xr-x root/root usr/share/man/man8/ | ||
-rw-r--r-- root/root usr/share/man/man8/pkgadd.8.gz | ||
-rw-r--r-- root/root usr/share/man/man8/pkginfo.8.gz | ||
-rw-r--r-- root/root usr/share/man/man8/pkgmk.8.gz | ||
-rw-r--r-- root/root usr/share/man/man8/pkgrm.8.gz | ||
-rw-r--r-- root/root usr/share/man/man8/rejmerge.8.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
85245be2b5d9482400e24c57bddea89a pkgmk.conf | ||
e0656b4b1cb17aa24e859036db5cd806 pkgutils-5.40.10.tar.xz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Description: A set of utilities to manage software packages | ||
# URL: http://crux.nu/gitweb/?p=tools/pkgutils.git | ||
# Maintainer: CRUX System Team, core-ports at crux dot nu | ||
# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu | ||
# Depends on: libarchive | ||
|
||
name=pkgutils | ||
version=5.40.10 | ||
release=1 | ||
source=(http://crux.nu/files/$name-$version.tar.xz \ | ||
pkgmk.conf) | ||
|
||
build () { | ||
cd $name-$version | ||
|
||
# The old -std=c++0x is only needed for older compiler versions that did not | ||
# support -std=c++11 and they chose that name to express the preliminary and | ||
# unstable nature of features (and the ABI) | ||
export CXXFLAGS="$CXXFLAGS -std=c++0x" | ||
make DESTDIR=$PKG install | ||
|
||
install -D -m 0644 $SRC/pkgmk.conf $PKG/etc/pkgmk.conf | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# | ||
# /etc/pkgmk.conf: pkgmk(8) configuration | ||
# | ||
|
||
export CFLAGS="-O2 -pipe -mtune=strongarm1110" | ||
export CXXFLAGS="${CFLAGS}" | ||
|
||
# export JOBS=$(nproc) | ||
# export MAKEFLAGS="-j $JOBS" | ||
|
||
# PKGMK_SOURCE_MIRRORS=() | ||
# PKGMK_SOURCE_DIR="$PWD" | ||
# PKGMK_PACKAGE_DIR="$PWD" | ||
# PKGMK_WORK_DIR="$PWD/work" | ||
# PKGMK_DOWNLOAD="no" | ||
# PKGMK_IGNORE_SIGNATURE="no" | ||
# PKGMK_IGNORE_MD5SUM="no" | ||
# PKGMK_IGNORE_FOOTPRINT="no" | ||
# PKGMK_IGNORE_NEW="no" | ||
# PKGMK_NO_STRIP="no" | ||
PKGMK_DOWNLOAD_PROG="curl" | ||
# PKGMK_WGET_OPTS="" | ||
# PKGMK_CURL_OPTS="" | ||
PKGMK_COMPRESSION_MODE="gz" | ||
|
||
# End of file |