Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
6df08037
Commit
6df08037
authored
8 years ago
by
Sören Tempel
Browse files
Options
Downloads
Patches
Plain Diff
testing/outils: override busybox rdate in /usr/sbin
parent
5ead265b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
testing/outils/APKBUILD
+11
-5
11 additions, 5 deletions
testing/outils/APKBUILD
with
11 additions
and
5 deletions
testing/outils/APKBUILD
+
11
−
5
View file @
6df08037
...
...
@@ -2,7 +2,7 @@
# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
pkgname
=
outils
pkgver
=
0.4.2
pkgrel
=
0
pkgrel
=
1
pkgdesc
=
"Port of some non-standard OpenBSD tools to Linux"
url
=
"https://github.com/chneukirchen/outils"
arch
=
"all"
...
...
@@ -53,13 +53,19 @@ _tool() {
local
name
=
$(
echo
$subpkgname
|
cut
-d
'-'
-f2
)
pkgdesc
=
"
$name
tool from
$pkgname
"
if
[
name
=
"cksum"
]
;
then
if
[
"
$
name
"
=
"cksum"
]
;
then
depends
=
"!coreutils
$depends
"
fi
mkdir
-p
"
$subpkgdir
"
/usr/bin
mv
"
$pkgdir
"
/usr/bin/
$name
\
"
$subpkgdir
"
/usr/bin/
$name
||
return
1
if
[
"
$name
"
=
"rdate"
]
;
then
mkdir
-p
"
$subpkgdir
"
/usr/sbin
mv
"
$pkgdir
"
/usr/bin/
$name
\
"
$subpkgdir
"
/usr/sbin/
$name
||
return
1
else
mkdir
-p
"
$subpkgdir
"
/usr/bin
mv
"
$pkgdir
"
/usr/bin/
$name
\
"
$subpkgdir
"
/usr/bin/
$name
||
return
1
fi
rmdir
"
$pkgdir
"
/usr/bin/ 2>/dev/null
||
true
rmdir
"
$pkgdir
"
/usr/ 2>/dev/null
||
true
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment