HAproxy RPM Spec Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments Name: haproxy Version: 1.6.3 Release: 1 License: monkeycow Group: monkeycow URL: https://monkeycow.tistory.com/ Source0: %{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: pcre-devel Requires: /sbin/chkconfig, /sbin/service %description %prep %setup -q # We don't want any perl de.. Package/RPM Package 5년 전
RPM Spec file Macro Spec File에서 사용하는 Macro와 그 의미 %{_sysconfdir} /etc %{_prefix} /usr %{_exec_prefix} %{_prefix} %{_bindir} %{_exec_prefix}/bin %{_libdir} %{_exec_prefix}/%{_lib} %{_libexecdir} %{_exec_prefix}/libexec %{_sbindir} %{_exec_prefix}/sbin %{_sharedstatedir} /var/lib %{_datarootdir} %{_prefix}/share %{_datadir} %{_datarootdir} %{_includedir} %{_prefix}/include %{_infodir} /usr/share/info %{_mandir} /usr/s.. Package/RPM Package 6년 전
RPM Packaging Spec file Summary: Name: Version: Release: License: Group: URL: BuildRoot: 사용할 Build Root 경로 //option Source0: 사용할 source (압축파일) Requries: RPM이 설치되기 이전에 설치되어 있어야 할 rpm을 지정해줌 BuildRequires: build 하기위해 필요한 rpm을 지정 할 수 있음 description %prep //Source에 지정한 파일을 빌드 하기전에 필요한 일을 지정 %setup -q //-q 옵션 : 압축푸는 과정을 보여주지 않음 //-n 옵션 : 이름을 지정할 수 있음 %build //%prep 다음에 수행되며 압축을 푼 소스를 가지고 빌드 %install //%build 다음에 수행되며 빌드 수행결과.. Package/RPM Package 6년 전