Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
abuild
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
27
Issues
27
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
abuild
Commits
9d616a13
Commit
9d616a13
authored
Jun 03, 2009
by
Natanael Copa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
abuild: add configurable apk cache
parent
bdc61827
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
Makefile
Makefile
+6
-4
abuild.in
abuild.in
+1
-1
No files found.
Makefile
View file @
9d616a13
...
@@ -2,9 +2,10 @@
...
@@ -2,9 +2,10 @@
PACKAGE
:=
abuild
PACKAGE
:=
abuild
VERSION
:=
1.14
VERSION
:=
1.14
prefix
?=
/usr
prefix
?=
/usr
sysconfdir
?=
/etc
sysconfdir
?=
/etc
datadir
?=
$(prefix)
/share/
$(PACKAGE)
datadir
?=
$(prefix)
/share/
$(PACKAGE)
apkcache
?=
/var/cache/abuild/apks
USR_BIN_FILES
:=
abuild devbuild mkalpine buildrepo
USR_BIN_FILES
:=
abuild devbuild mkalpine buildrepo
SAMPLES
:=
sample.APKBUILD sample.initd sample.confd
\
SAMPLES
:=
sample.APKBUILD sample.initd sample.confd
\
...
@@ -29,7 +30,8 @@ TAR := tar
...
@@ -29,7 +30,8 @@ TAR := tar
SED_REPLACE
:=
-e
's:@VERSION@:
$(FULL_VERSION)
:g'
\
SED_REPLACE
:=
-e
's:@VERSION@:
$(FULL_VERSION)
:g'
\
-e
's:@prefix@:
$(prefix)
:g'
\
-e
's:@prefix@:
$(prefix)
:g'
\
-e
's:@sysconfdir@:
$(sysconfdir)
:g'
\
-e
's:@sysconfdir@:
$(sysconfdir)
:g'
\
-e
's:@datadir@:
$(datadir)
:g'
-e
's:@datadir@:
$(datadir)
:g'
\
-e
's:@apkcache@:
$(apkcache)
:g'
.SUFFIXES
:
.sh.in .in
.SUFFIXES
:
.sh.in .in
.sh.in.sh
:
.sh.in.sh
:
...
...
abuild.in
View file @
9d616a13
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
abuild_ver
=
@VERSION@
abuild_ver
=
@VERSION@
sysconfdir
=
@sysconfdir@
sysconfdir
=
@sysconfdir@
abuildrepo
=
@apkcache@
startdir
=
"
$PWD
"
startdir
=
"
$PWD
"
srcdir
=
${
srcdir
:-
"
$startdir
/src"
}
srcdir
=
${
srcdir
:-
"
$startdir
/src"
}
...
@@ -17,7 +18,6 @@ pkgbasedir=${pkgbasedir:-"$startdir/pkg"}
...
@@ -17,7 +18,6 @@ pkgbasedir=${pkgbasedir:-"$startdir/pkg"}
pkgrel
=
0
pkgrel
=
0
repo
=
${
startdir
%/*
}
repo
=
${
startdir
%/*
}
repo
=
${
repo
##*/
}
repo
=
${
repo
##*/
}
abuildrepo
=
/var/cache/abuild/apks
# defaults
# defaults
SRCDEST
=
${
SRCDEST
:-
$startdir
}
SRCDEST
=
${
SRCDEST
:-
$startdir
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment