mirror of
https://github.com/darlinghq/darling-libkqueue.git
synced 2024-11-23 19:59:40 +00:00
2889f3c3fb
git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@97 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
67 lines
1.6 KiB
RPMSpec
67 lines
1.6 KiB
RPMSpec
#
|
|
# Copyright (c) 2009 Mark Heily <mark@heily.com>
|
|
#
|
|
# 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.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
#
|
|
|
|
# Based on suggestions from http://blag.wiki.aktivix.org/Rpm_tips
|
|
#
|
|
%define _builddir ./
|
|
%define _rpmdir ./
|
|
%define _rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
|
|
|
|
Name: @@PROGRAM@@
|
|
Summary: @@PKG_SUMMARY@@
|
|
Version: @@VERSION@@
|
|
Release: 1
|
|
License: @@LICENSE@@
|
|
Vendor: @@AUTHOR@@
|
|
Group: System Environment/Libraries
|
|
Source0: %{name}-%version.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-build
|
|
|
|
%description
|
|
@@PKG_DESCRIPTION@@
|
|
|
|
%prep
|
|
#echo %_target
|
|
#echo %_target_alias
|
|
#echo %_target_cpu
|
|
#echo %_target_os
|
|
#echo %_target_vendor
|
|
echo Building %{name}-%{version}-%{release}
|
|
|
|
%setup -q -n %{name}-%{version}
|
|
|
|
%build
|
|
make
|
|
|
|
%install
|
|
make DESTDIR=%buildroot install
|
|
|
|
%clean
|
|
[ ${RPM_BUILD_ROOT} != "/" ] && rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
%post
|
|
/sbin/ldconfig
|
|
|
|
%postun
|
|
/sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
|
|
#TODO
|
|
|
|
%changelog
|