-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathberry-acpi.spec
72 lines (50 loc) · 984 Bytes
/
berry-acpi.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
%define name berry-acpi
%define version 0.01
%define release b1
Name: %{name}
Summary: Acpi events for Berry Linux
Version: %{version}
Release: %{release}
Copyright: GPL
Group: System/Tools
Source: %{name}-%{version}.tar.bz2
Buildroot: %{_tmppath}/%{name}-%{version}
BuildArchitectures: noarch
%description
Acpi events for Berry Linux.
For use softwear suspend.
##
## Setup Section
##
%prep
%setup -q
##
## Build Section
##
%build
##
## Install Section
##
%install
mkdir -p %{buildroot}/etc/acpi/{actions,events}
install -m 755 *.sh %{buildroot}/etc/acpi/actions/
install -m 644 *.conf %{buildroot}/etc/acpi/events/
##
## Clean Section
##
%clean
[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot}
rm -rf $RPM_BUILD_DIR/%{name}-%{version}
##
## Files Section
##
%files
%defattr (-,root,root)
/etc/acpi/actions/*
/etc/acpi/events/*
##
## change log
##
%changelog
* Sun Aug 8 2004 Yuichiro Nakada <berry@po.yui.mine.nu>
- Create for Berry Linux