Added xbps-src and its associated code again.
It's better to keep it outside of XBPS. --HG-- extra : convert_revision : 34f9c316585b972158d6ee55492c02c9bc5d3fcd
This commit is contained in:
25
xbps-src/etc/Makefile
Normal file
25
xbps-src/etc/Makefile
Normal file
@@ -0,0 +1,25 @@
|
||||
include ../vars.mk
|
||||
|
||||
CONF_FILE = xbps-src.conf
|
||||
|
||||
.PHONY: all
|
||||
all:
|
||||
sed -e "s|@@XBPS_INSTALL_PREFIX@@|$(PREFIX)|g" \
|
||||
$(CONF_FILE).in > $(CONF_FILE)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
-rm -f $(CONF_FILE)
|
||||
|
||||
.PHONY: install
|
||||
install:
|
||||
if [ ! -d $(DESTDIR)$(ETCDIR) ]; then \
|
||||
install -d $(DESTDIR)$(ETCDIR); \
|
||||
fi
|
||||
|
||||
if [ ! -f $(DESTDIR)$(ETCDIR)/$(CONF_FILE) ]; then \
|
||||
install -m 644 $(CONF_FILE) $(DESTDIR)$(ETCDIR); \
|
||||
fi
|
||||
|
||||
.PHONY: uninstall
|
||||
uninstall:
|
||||
64
xbps-src/etc/xbps-src.conf.in
Normal file
64
xbps-src/etc/xbps-src.conf.in
Normal file
@@ -0,0 +1,64 @@
|
||||
#
|
||||
# Configuration file for xbps-src.
|
||||
#
|
||||
|
||||
#
|
||||
# Directory where XBPS has been installed. By default /usr/local.
|
||||
#
|
||||
XBPS_INSTALLDIR=@@XBPS_INSTALL_PREFIX@@
|
||||
|
||||
#
|
||||
# Global directory where the xbps distribution files are stored.
|
||||
# Templates, patches and helper files should all be in that directory.
|
||||
#
|
||||
XBPS_DISTRIBUTIONDIR=$HOME/xbps
|
||||
|
||||
#
|
||||
# Master directory: this is where all symlinks will be
|
||||
# created pointing at packages installed in XBPS_DESTDIR.
|
||||
#
|
||||
XBPS_MASTERDIR=$XBPS_DISTRIBUTIONDIR/masterdir
|
||||
|
||||
#
|
||||
# Destination directory: this is where all package files will be
|
||||
# installed.
|
||||
#
|
||||
XBPS_DESTDIR=$XBPS_DISTRIBUTIONDIR/destdir
|
||||
|
||||
#
|
||||
# Binary packages directory: this is where the binary packages will
|
||||
# be created to.
|
||||
#
|
||||
XBPS_PACKAGESDIR=$XBPS_DISTRIBUTIONDIR/packages
|
||||
|
||||
#
|
||||
# Directory where source files will be extracted to.
|
||||
#
|
||||
XBPS_BUILDDIR=$XBPS_DISTRIBUTIONDIR/builddir
|
||||
|
||||
#
|
||||
# Directory where source distribution files are stored.
|
||||
#
|
||||
XBPS_SRCDISTDIR=$XBPS_DISTRIBUTIONDIR/srcdistdir
|
||||
|
||||
#
|
||||
# Compilation flags for cc and c++.
|
||||
#
|
||||
XBPS_CFLAGS="-O2 -pipe"
|
||||
XBPS_CXXFLAGS="$XBPS_CFLAGS"
|
||||
|
||||
#
|
||||
# Number of jobs when running GNU or BSD make style packages.
|
||||
#
|
||||
#XBPS_MAKEJOBS=4
|
||||
|
||||
#
|
||||
# Fetch command to download files.
|
||||
#
|
||||
XBPS_FETCH_CMD=wget
|
||||
|
||||
#
|
||||
# Cross compilation stuff.
|
||||
#
|
||||
#XBPS_CROSS_TARGET=i686-pc-linux-gnu
|
||||
#XBPS_CROSS_DIR=/storage/mktoolchain/$XBPS_CROSS_TARGET
|
||||
Reference in New Issue
Block a user