From 07e8456ce4d36ab289eb82b8a28c670080d32036 Mon Sep 17 00:00:00 2001 From: Milan Zamazal Date: Tue, 12 Jul 2022 21:38:07 +0200 Subject: [PATCH] Rename pipewire-zero-pkg.el to pipewire-zero.el MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit And replace the package definition with a simple ‘require’. This should be enough for MELPA. --- pipewire-zero-pkg.el => pipewire-zero.el | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) rename pipewire-zero-pkg.el => pipewire-zero.el (78%) diff --git a/pipewire-zero-pkg.el b/pipewire-zero.el similarity index 78% rename from pipewire-zero-pkg.el rename to pipewire-zero.el index f4028c4..f8a2efb 100644 --- a/pipewire-zero-pkg.el +++ b/pipewire-zero.el @@ -1,10 +1,10 @@ -;;; pipewire-0-pkg.el --- pipewire-0 package definition -*- lexical-binding: t -*- +;;; pipewire-zero.el --- pipewire-0 package definition -*- lexical-binding: t -*- ;; Copyright (C) 2022 Milan Zamazal ;; Author: Milan Zamazal ;; Version: 1 -;; Package-Requires: ((emacs "25.1")) +;; Package-Requires: ((emacs "28.1")) ;; Keywords: multimedia ;; URL: https://git.zamazal.org/pdm/pipewire-0 @@ -23,8 +23,6 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . -(define-package "pipewire-zero" "1" - "Interface to PipeWire." - '((emacs "28.1"))) +(require 'pipewire) -;;; pipewire-0-pkg.el ends here +;;; pipewire-zero.el ends here