## ## zerotier.spec -- OpenPKG RPM Package Specification ## Copyright (c) 2000-2022 OpenPKG Project ## ## Permission to use, copy, modify, and distribute this software for ## any purpose with or without fee is hereby granted, provided that ## the above copyright notice and this permission notice appear in all ## copies. ## ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ## SUCH DAMAGE. ## # package information Name: zerotier Summary: Ethernet-Based VPN Service URL: http://zerotier.com/ Vendor: Adam Ierymenko, Grant Limberg, Joseph Henry Packager: OpenPKG Project Distribution: OpenPKG Community Class: EVAL Group: Networking License: GPL Version: 1.8.4 Release: 20211202 # list of sources Source0: https://github.com/zerotier/ZeroTierOne/archive/%{version}.tar.gz Patch0: zerotier.patch # build information BuildPreReq: OpenPKG, openpkg >= 20160101 PreReq: OpenPKG, openpkg >= 20160101 %description ZeroTier is an enterprise Ethernet switch for planet Earth. It erases the LAN/WAN distinction and makes VPNs, tunnels, proxies, and other kludges arising from the inflexible nature of physical networks obsolete. Everything is encrypted end-to-end and traffic takes the most direct (peer to peer) path available. %track prog zerotier = { version = %{version} url = https://github.com/zerotier/ZeroTierOne/releases regex = (1\.\d+\.\d+)\.tar\.gz } %prep %setup -q -n ZeroTierOne-%{version} %patch -p0 %build # build program %{l_shtool} subst %{l_value -s -a} osdep/OSUtils.cpp %{l_make} %{l_mflags -O} %install # create installation hierarchy %{l_shtool} mkdir -f -p -m 755 \ $RPM_BUILD_ROOT%{l_prefix}/bin \ $RPM_BUILD_ROOT%{l_prefix}/sbin \ $RPM_BUILD_ROOT%{l_prefix}/man/man1 \ $RPM_BUILD_ROOT%{l_prefix}/man/man8 \ $RPM_BUILD_ROOT%{l_prefix}/var/zerotier/db \ $RPM_BUILD_ROOT%{l_prefix}/var/zerotier/log \ $RPM_BUILD_ROOT%{l_prefix}/var/zerotier/run # install program %{l_shtool} install -c -s -m 755 \ zerotier-one $RPM_BUILD_ROOT%{l_prefix}/sbin/ ln $RPM_BUILD_ROOT%{l_prefix}/sbin/zerotier-one \ $RPM_BUILD_ROOT%{l_prefix}/bin/zerotier-cli ln $RPM_BUILD_ROOT%{l_prefix}/sbin/zerotier-one \ $RPM_BUILD_ROOT%{l_prefix}/bin/zerotier-idtool # install manual pages %{l_shtool} install -c -m 644 \ doc/zerotier-one.8 $RPM_BUILD_ROOT%{l_prefix}/man/man8/ %{l_shtool} install -c -m 644 \ doc/zerotier-idtool.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/ %{l_shtool} install -c -m 644 \ doc/zerotier-cli.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/ # determine installation files %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \ %{l_files_std} \ '%attr(-,%{l_rusr},%{l_rgrp}) %{l_prefix}/var/zerotier/*' %files -f files %clean