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
62dd7a49
Commit
62dd7a49
authored
3 years ago
by
Nico de Haer
Committed by
Kevin Daudt
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
testing/pimd: new aport
parent
0c3f7850
Loading
Loading
1 merge request
!31637
testing/pimd: new aport
Pipeline
#113754
passed
3 years ago
Stage: lint
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
testing/pimd/APKBUILD
+47
-0
47 additions, 0 deletions
testing/pimd/APKBUILD
testing/pimd/pimd.confd
+3
-0
3 additions, 0 deletions
testing/pimd/pimd.confd
testing/pimd/pimd.initd
+15
-0
15 additions, 0 deletions
testing/pimd/pimd.initd
with
65 additions
and
0 deletions
testing/pimd/APKBUILD
0 → 100644
+
47
−
0
View file @
62dd7a49
# Contributor: Nico de Haer <nico.dehaer@gmail.com>
# Maintainer: Nico de Haer <nico.dehaer@gmail.com>
pkgname
=
pimd
pkgver
=
3.0_git20220201
_gitrev
=
facecc14c46fb0991d458664c650a7141dec035d
pkgrel
=
0
pkgdesc
=
"PIM-SM/SSM Multicast Routing for UNIX"
url
=
"https://troglobit.com/pimd.html"
arch
=
"all"
options
=
"!check"
license
=
"BSD-3-Clause"
makedepends
=
"linux-headers automake autoconf"
subpackages
=
"
$pkgname
-doc
$pkgname
-openrc"
source
=
"
$pkgname
-
$_gitrev
.tar.gz::https://github.com/troglobit/pimd/archive/
$_gitrev
.tar.gz
pimd.initd
pimd.confd
"
builddir
=
"
$srcdir
/
$pkgname
-
$_gitrev
"
prepare
()
{
default_prepare
./autogen.sh
}
build
()
{
./configure
--prefix
=
/usr
\
--sysconfdir
=
/etc
\
--localstatedir
=
/var
make
}
package
()
{
make
DESTDIR
=
"
$pkgdir
"
install
install
-m755
-D
"
$srcdir
"
/
$pkgname
.initd
\
"
$pkgdir
"
/etc/init.d/
$pkgname
install
-m644
-D
"
$srcdir
"
/
$pkgname
.confd
\
"
$pkgdir
"
/etc/conf.d/
$pkgname
install
-m644
-D
"
$builddir
"
/pimd.conf
\
"
$pkgdir
"
/etc/pimd.conf
}
sha512sums
=
"
87124ce25e4a5d31843cf397e8f6309078dbcf2b80fdfe4dafc539e52c31e362591314ae77b57302ab616237f9e6f945eb6b72178c090d1e2a136f0633b77b21 pimd-facecc14c46fb0991d458664c650a7141dec035d.tar.gz
e1858b511a4fea2bee743c2a9158c05844451ebb9ba3c23de257f7f25144a3671c04b32a37afdd158483ed9079427d00d25e314aabd0d83d44ba7e32da698166 pimd.initd
a0602071a27483dd955805e1eb885896626968ba7caba8e66ecdcc03244f4346cb3bc9c06e1da81e35c560f0d6c6622cbd52c190bae9088eaedae5d7f795acfc pimd.confd
"
This diff is collapsed.
Click to expand it.
testing/pimd/pimd.confd
0 → 100644
+
3
−
0
View file @
62dd7a49
# PIMD conf.d file for alpine linux
pimd_opts
=
"-f /etc/pimd.conf -l notice"
This diff is collapsed.
Click to expand it.
testing/pimd/pimd.initd
0 → 100644
+
15
−
0
View file @
62dd7a49
#!/sbin/openrc-run
# PIMD init.d file for alpine linux.
name
=
pimd
command
=
"/usr/sbin/
$name
"
command_args
=
"
$pimd_opts
"
command_background
=
"yes"
pidfile
=
"/run/
$name
.pid"
depend
()
{
need net
after firewall
}
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